summaryrefslogtreecommitdiff
path: root/project2/sql/unittests/pqschema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'project2/sql/unittests/pqschema.sql')
-rw-r--r--project2/sql/unittests/pqschema.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/project2/sql/unittests/pqschema.sql b/project2/sql/unittests/pqschema.sql
index 21277ca..b0581ab 100644
--- a/project2/sql/unittests/pqschema.sql
+++ b/project2/sql/unittests/pqschema.sql
@@ -18,6 +18,11 @@ CREATE TABLE test(
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');
+CREATE TABLE test2(
+ path text not null);
+
+INSERT INTO test2 VALUES('$P2MOCKSCRIPTDIR/pqschema.sql');
+
CREATE FUNCTION event_tsvector() RETURNS int
LANGUAGE sql STABLE
AS $tag$