-------------- drop table if exists test006 -------------- Query OK, 0 rows affected (0.22 sec) -------------- drop table if exists test006_load -------------- Query OK, 0 rows affected (0.01 sec) -------------- drop table if exists test006_query -------------- Query OK, 0 rows affected (0.01 sec) -------------- create table if not exists test006 ( batch int, loaddt datetime, c1 bigint, c2 int, c3 float, c4 double, c5 varchar(20) )engine=infinidb -------------- Query OK, 0 rows affected (0.16 sec) -------------- create table test006_query ( id int not null, iteration int not null, start datetime, stop datetime, err bool, correctResults bool, rowsReturned int, PRIMARY KEY (id, iteration) ) -------------- Query OK, 0 rows affected (0.00 sec) -------------- create table test006_load ( id int not null primary key, what varchar(30), start datetime, stop datetime ) -------------- Query OK, 0 rows affected (0.00 sec) Bye