summaryrefslogtreecommitdiff
path: root/project2/sql/unittests/odbcschema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'project2/sql/unittests/odbcschema.sql')
-rw-r--r--project2/sql/unittests/odbcschema.sql8
1 files changed, 0 insertions, 8 deletions
diff --git a/project2/sql/unittests/odbcschema.sql b/project2/sql/unittests/odbcschema.sql
deleted file mode 100644
index 96848eb..0000000
--- a/project2/sql/unittests/odbcschema.sql
+++ /dev/null
@@ -1,8 +0,0 @@
-CREATE TABLE test(
- id int,
- fl numeric(5,2),
- string text,
- 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');