1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-17 09:41:06 +03:00
Files
mariadb-columnstore-engine/mysql/queries/nightly/srvswdev11/test009/logs/create.sql.log
2016-01-06 14:08:59 -06:00

61 lines
1006 B
Plaintext

--------------
drop table if exists test009
--------------
Query OK, 0 rows affected (2.33 sec)
--------------
drop table if exists test009_delete
--------------
Query OK, 0 rows affected (0.01 sec)
--------------
drop table if exists test009_query
--------------
Query OK, 0 rows affected (0.07 sec)
--------------
create table if not exists test009 (
batch int,
loaddt datetime,
c1 bigint,
c2 int,
c3 float,
c4 double,
c5 varchar(20)
)engine=infinidb
--------------
Query OK, 0 rows affected (0.48 sec)
--------------
create table test009_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.02 sec)
--------------
create table test009_delete (
id int not null,
what varchar(30) not null,
start datetime,
stop datetime,
PRIMARY KEY (id, what)
)
--------------
Query OK, 0 rows affected (0.00 sec)
Bye