For two empty tables the following SQL output is generated ``` COPY "TableFoo" FROM STDIN; COPY "TableBar" FROM STDIN; \. ``` resulting in error ``` psql:tdx-dev.sql:915: ERROR: missing data for column "column1" CONTEXT: COPY TableFoo, line 1: "COPY "TableBar" FROM STDIN;" ``` because the first COPY statement is missing the EOD marker `\.`
For two empty tables the following SQL output is generated
resulting in error
because the first COPY statement is missing the EOD marker
\.