From 2a1d749e90de8d15b4e1f66ffe05daf825add00b Mon Sep 17 00:00:00 2001 From: Soby Chacko Date: Fri, 8 Feb 2019 18:03:21 -0500 Subject: [PATCH] Adding database schema for testing jdbc source --- db-scripts/sample-schema.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 db-scripts/sample-schema.sql diff --git a/db-scripts/sample-schema.sql b/db-scripts/sample-schema.sql new file mode 100644 index 0000000..f1b62a6 --- /dev/null +++ b/db-scripts/sample-schema.sql @@ -0,0 +1,9 @@ +DROP TABLE IF EXISTS test; +create table test( + id bigint, + name varchar (2000), + tag char(1) +); +insert into test values (1, 'Bob', NULL); +insert into test values (2, 'Jane', NULL); +insert into test values (3, 'John', NULL); \ No newline at end of file