create table test (c1 int ,c2 text);
create table testempty ( c1 int );
CREATE TABLE INT2_EDB_TBL(f1 int2 not null);
CREATE TABLE INTERVAL_EDB_TBL (f1 interval);
CREATE TABLE CHAR_EDB_TBL(f1 char unique);
CREATE TABLE DATE_EDB_TBL (f1 date);
CREATE TABLE INT4_EDB_TBL(f1 int4);
CREATE TABLE INT8_EDB_TBL(q1 int8, q2 int8);
CREATE TABLE INET_EDB_TBL (c cidr, i inet);
CREATE TABLE TIME_EDB_TBL (f1 time(2));
CREATE TABLE BOOLEDB_TBL1 (f1 bool);
CREATE TABLE EDB_BIT_TABLE(b BIT(11));
CREATE TABLE FLOAT4_EDB_TBL (f1  float4);
CREATE TABLE FLOAT8_EDB_TBL(f1 float8);
CREATE TABLE name_EDB_TBL(f1 name);
CREATE TABLE num_data (id int4, val numeric(1000,800));
CREATE TABLE num_data1 (id int4, val numeric(210,10));
CREATE TABLE OID_EDB_TBL(f1 oid);
CREATE TABLE POINT_EDB_TBL(f1 point);
CREATE TABLE serialTest (f1 text, f2 serial);
CREATE TABLE check_default_direct (f1 text, f2 integer default 200+99);
create type fullname as (first text, last text);
create table person_ldr( id int, name fullname);
create table checkposition ( c1 number, c2 text );
create table missingposcheck ( data1 int ,data2 text );
create index id1 on int8_edb_tbl (q1);
create table somefiller ( c1 int ,c2 text);
create table posfiller ( c1 int ,c2 text);
create table extrafiller ( c1 int ,c2 text);
create table allfiller ( c1 int ,c2 text);
create table deffiller ( c1 int ,c2 text);
CREATE TABLE TIMESTAMP_EDB_TBL ( d1 timestamp(2) without time zone);
CREATE TABLE TIMESTAMPTZ_EDB_TBL ( d1 timestamp(2) with time zone);
CREATE TABLE TIMETZ_EDB_TBL (f1 time(2) with time zone);
CREATE TABLE arraytest (
	a int2[],
	b int4[][][],
	c name[],
	d text[][], 
	e float8[],
	f char(5)[],
	g varchar(5)[]
);
create table testnotnull ( c1 int ,c2 text);
CREATE TABLE bm_test(i bigint); 
create table chartoast ( i text);

