Adding database schema for testing jdbc source

This commit is contained in:
Soby Chacko
2019-02-08 18:03:21 -05:00
parent 739847d1bb
commit 2a1d749e90

View File

@@ -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);