test script fixes
[csql.git] / test / tools / csql / default_timeval_nontime.sql
blob1dcfb24642886f3b9efe9275cea5fa22bb71a4b7
1 echo CREATE TABLE t1(f1 INT DEFAULT '2009-07-29 01:01:01' );
2 CREATE TABLE t1(f1 INT DEFAULT '2009-07-29 01:01:01' );
3 echo create table t2(f2 SMALLINT DEFAULT '2009-07-29 01:01:01');
4 create table t2(f2 SMALLINT DEFAULT '2009-07-29 01:01:01');
5 echo create table t3(f3 TINYINT DEFAULT '2009-07-29 01:01:01');
6 create table t3(f3 TINYINT DEFAULT '2009-07-29 01:01:01');
7 echo create table t4(f4 BIGINT DEFAULT '2009-07-29 01:01:01');
8 create table t4(f4 BIGINT DEFAULT '2009-07-29 01:01:01');
9 echo create table t5(f5 FLOAT DEFAULT '2009-07-29 01:01:01');
10 create table t5(f5 FLOAT DEFAULT '2009-07-29 01:01:01');
11 echo create table t6(f6 DOUBLE DEFAULT '2009-07-29 01:01:01');
12 create table t6(f6 DOUBLE DEFAULT '2009-07-29 01:01:01');