<html>
    <head>
      <base href="https://bugs.documentfoundation.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEEDINFO "
   title="NEEDINFO - Subform Postgresql "The column index out of range: 1, number of columns: 0"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=113617#c13">Comment # 13</a>
              on <a class="bz_bug_link 
          bz_status_NEEDINFO "
   title="NEEDINFO - Subform Postgresql "The column index out of range: 1, number of columns: 0"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=113617">bug 113617</a>
              from <span class="vcard"><a class="email" href="mailto:jeffsummer@mail.com" title="jeffsummer@mail.com">jeffsummer@mail.com</a>
</span></b>
        <pre>-- 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;</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>