1
drop table if exists t1;
2
create table t1(a int);
3
insert into t1 values(1);
5
Test delimiter : from command line
9
Test delimiter :; from command line
13
Test 'go' command(vertical output) G
14
*************************** 1. row ***************************
31
+------+------+---------------------------+
33
+------+------+---------------------------+
35
| NULL | NULL | <-----------------------> |
36
| NULL | NULL | <----- |
37
| NULL | NULL | Τη γλώσσα |
38
| NULL | NULL | ᛖᚴ ᚷᛖᛏ |
39
+------+------+---------------------------+
42
Field Type Null Key Default Extra
51
+-------+------+------+-----+---------+-------+
52
| Field | Type | Null | Key | Default | Extra |
53
+-------+------+------+-----+---------+-------+
54
| i | int | YES | | NULL | |
55
| j | int | NO | | NULL | |
56
| k | int | YES | | NULL | |
57
+-------+------+------+-----+---------+-------+
76
create table t1(a int, b varchar(255), c int);
77
Field Type Null Key Default Extra
79
b varchar(255) YES NULL
81
Field Type Null Key Default Extra
83
b varchar(255) YES NULL
88
ERROR 1064 (42000) at line 4: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near '' at line 1
89
ERROR: USE must be followed by a database name
90
create table t17583 (a int);
91
insert into t17583 (a) values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
92
insert into t17583 select a from t17583;
93
insert into t17583 select a from t17583;
94
insert into t17583 select a from t17583;
95
insert into t17583 select a from t17583;
96
insert into t17583 select a from t17583;
97
insert into t17583 select a from t17583;
98
insert into t17583 select a from t17583;
99
select count(*) from t17583;
103
Test connect without db- or host-name => reconnect
104
Test connect with dbname only => new dbname, old hostname
105
ERROR 1064 (42000) at line 2: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'connecttest' at line 1
106
Test connect with _invalid_ dbname only => new invalid dbname, old hostname
107
ERROR 1049 (42000): Unknown database 'invalid'
108
ERROR 1049 (42000): Unknown database 'invalid'
109
Test connect with dbname + hostname
110
Test connect with dbname + _invalid_ hostname