diff options
Diffstat (limited to 'project2/sql/unittests/pqschema.sql')
-rw-r--r-- | project2/sql/unittests/pqschema.sql | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/project2/sql/unittests/pqschema.sql b/project2/sql/unittests/pqschema.sql index 96848eb..506365b 100644 --- a/project2/sql/unittests/pqschema.sql +++ b/project2/sql/unittests/pqschema.sql @@ -1,3 +1,11 @@ +-- +-- pg_dump style comment +-- Table: test; owner: comment: ; +-- +/* + This is + a + multiline comment */ CREATE TABLE test( id int, fl numeric(5,2), @@ -5,4 +13,4 @@ CREATE TABLE test( boolean bool, dt timestamp without time zone, ts interval); -INSERT INTO test VALUES(4, 123.45, 'some text', true, '2015-04-27 23:06:03', '1 day 14:13:12'); +INSERT INTO test VALUES(4, 123.45, 'some text with a ; in it and a '' too', true, '2015-04-27 23:06:03', '1 day 14:13:12'); |