CREATE TABLE

INSERT: 1 row

INSERT: 1 row

"Sample text 1","Text1               ","65","123.456","7.89","12.34","1","100","1000","1000","100000","2024-01-01","08:00:00","2024-01-01 08:00:00","2024-01-01 08:00:00 UTC"
"","","","","","","","","","","","","","",""

"CREATE TABLE gt_mysql1.gt_db1.tb01 (
   f1 varchar(200),
   f2 char(20),
   f3 varbinary,
   f4 decimal(10, 3),
   f5 real,
   f6 double,
   f8 tinyint,
   f9 smallint,
   f10 integer,
   f11 integer,
   f12 bigint,
   f13 date,
   f14 time(0),
   f15 timestamp(0),
   f16 timestamp(0) with time zone
)
COMMENT ''
WITH (
   engine = 'InnoDB'
)"

CREATE TABLE

INSERT: 1 row

"Sample text 1","Text1               ","65","123.456","7.89","12.34","1","100","1000","1000","100000","2024-01-01","08:00:00","2024-01-01 08:00:00","2024-01-01 08:00:00 UTC"
"","","","","","","","","","","","","","",""

"CREATE TABLE gt_mysql1.gt_db1.tb02 (
   f1 varchar(200) NOT NULL,
   f2 char(20) NOT NULL,
   f3 varbinary NOT NULL,
   f4 decimal(10, 3) NOT NULL,
   f5 real NOT NULL,
   f6 double NOT NULL,
   f8 tinyint NOT NULL,
   f9 smallint NOT NULL,
   f10 integer NOT NULL,
   f11 integer NOT NULL,
   f12 bigint NOT NULL,
   f13 date NOT NULL,
   f14 time(0) NOT NULL,
   f15 timestamp(0) NOT NULL,
   f16 timestamp(0) with time zone NOT NULL
)
COMMENT ''
WITH (
   engine = 'InnoDB'
)"