[Libreoffice-bugs] [Bug 113617] Subform Postgresql "The column index out of range: 1, number of columns: 0
bugzilla-daemon at bugs.documentfoundation.org
bugzilla-daemon at bugs.documentfoundation.org
Wed Nov 15 03:10:29 UTC 2017
https://bugs.documentfoundation.org/show_bug.cgi?id=113617
--- Comment #13 from jeffsummer at mail.com ---
-- Table: public.test1
-- DROP TABLE public.test1;
CREATE TABLE public.test1
(
id1 integer NOT NULL,
text1 character varying COLLATE pg_catalog."default",
CONSTRAINT test1_pkey PRIMARY KEY (id1)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
ALTER TABLE public.test1
OWNER to postgres;
-- Table: public.test2
-- DROP TABLE public.test2;
CREATE TABLE public.test2
(
id2 integer NOT NULL,
id1 integer,
text2 character varying COLLATE pg_catalog."default",
CONSTRAINT test2_pkey PRIMARY KEY (id2),
CONSTRAINT test1_fkey FOREIGN KEY (id1)
REFERENCES public.test1 (id1) MATCH SIMPLE
ON UPDATE NO ACTION
ON DELETE NO ACTION
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
ALTER TABLE public.test2
OWNER to postgres;
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/libreoffice-bugs/attachments/20171115/192ebce9/attachment.html>
More information about the Libreoffice-bugs
mailing list