*** empty log message ***
[csql.git] / test / sqlapi / Csql / DMLStmt / exp.test013
blob4839d954d354fcb623ac45514172f787ec2cafb4
1 Connection opened
2 CREATE TABLE t1(f1 TINYINT,f2 SMALLINT,f3 INT AUTO_INCREMENT,f4 BIGINT);
3 Table Name is t1
4 INSERT INTO t1 VALUES(1, 10, 100, 1000);
5 INSERT INTO t1 VALUES(1, 10, NULL, 1000);
6 INSERT INTO t1 VALUES(1, 10, 200, 1000);
7 INSERT INTO t1 VALUES(1, 10, 150, 1000);
8 INSERT INTO t1 VALUES(1, 10, 100, 1000);
9 f1(tinyint)=1 | f2(smallint)=10 | f3(int)=100 | f4(bigint)=1000 | 
10 f1(tinyint)=1 | f2(smallint)=10 | f3(int)=101 | f4(bigint)=1000 | 
11 f1(tinyint)=1 | f2(smallint)=10 | f3(int)=200 | f4(bigint)=1000 | 
12 f1(tinyint)=1 | f2(smallint)=10 | f3(int)=150 | f4(bigint)=1000 | 
13 4 rows selected
14 Table dropped
15 Connection Closed