~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/mysql.test

  • Committer: Jay Pipes
  • Date: 2009-03-16 15:20:27 UTC
  • mto: (934.3.7 mordred)
  • mto: This revision was merged to the branch mainline in revision 938.
  • Revision ID: jpipes@serialcoder-20090316152027-njlreaim8vxqta6c
Fixes ENUM field type to throw an error on bad data input.  0 is now not
allowed on insertion.  MySQL allows 0, in the manual it states 0 is "the
null string error index" whatever that means.  Drizzle doesn't allow it.

Corrected test cases.

Also cleans up indentation on JOIN::exec() which was bothering me.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# Test delimiters
17
17
# This breaks vpath builds - and I don't care enough about it to fix
18
18
# drizzletest. We can re-enable this in the new test system
19
 
#--exec $DRIZZLE test 2>&1 < "$DRIZZLE_TEST_DIR/t/mysql_delimiter.sql"
 
19
#--exec $MYSQL test 2>&1 < "$DRIZZLE_TEST_DIR/t/mysql_delimiter.sql"
20
20
 
21
21
--disable_query_log
22
22
# Test delimiter : supplied on the command line
23
23
select "Test delimiter : from command line" as "_";
24
 
--exec $DRIZZLE test --delimiter=":" -e "select * from t1:"
 
24
--exec $MYSQL test --delimiter=":" -e "select * from t1:"
25
25
# Test delimiter :; supplied on the command line
26
26
select "Test delimiter :; from command line" as "_";
27
 
--exec $DRIZZLE test --delimiter=":;" -e "select * from t1:;"
 
27
--exec $MYSQL test --delimiter=":;" -e "select * from t1:;"
28
28
# Test 'go' command (vertical output) \G
29
29
select "Test 'go' command(vertical output) \G" as "_";
30
 
--exec $DRIZZLE test -e "select * from t1\G"
 
30
--exec $MYSQL test -e "select * from t1\G"
31
31
# Test 'go' command \g
32
32
select "Test  'go' command \g" as "_";
33
 
--exec $DRIZZLE test -e "select * from t1\g"
 
33
--exec $MYSQL test -e "select * from t1\g"
34
34
--enable_query_log
35
35
drop table t1;
36
36
 
37
37
#
 
38
# BUG9998 - MySQL client hangs on USE "database"
 
39
#
 
40
create table t1(a int);
 
41
lock tables t1 write;
 
42
--exec $MYSQL -e "use test; select database();"
 
43
unlock tables;
 
44
drop table t1;
 
45
 
 
46
#
38
47
# Bug#16859 -- NULLs in columns must not truncate data as if a C-language "string".
39
48
#
40
 
#--exec $DRIZZLE -t test -e "create table t1 (col1 binary(4), col2 varchar(10), col3 int); insert into t1 values ('a', 'b', 123421),('a ', '0123456789', 4), ('abcd', '', 4); select concat('>',col1,'<'), col2, col3 from t1; drop table t1;" 2>&1
 
49
#--exec $MYSQL -t test -e "create table t1 (col1 binary(4), col2 varchar(10), col3 int); insert into t1 values ('a', 'b', 123421),('a ', '0123456789', 4), ('abcd', '', 4); select concat('>',col1,'<'), col2, col3 from t1; drop table t1;" 2>&1
41
50
 
42
51
#
43
52
# Bug#17939 Wrong table format when using UTF8 strings
44
53
#
45
 
--exec $DRIZZLE --table -e "SELECT 'John Doe' as '__tañgè Ñãmé'" 2>&1
46
 
--exec $DRIZZLE --table -e "SELECT '__tañgè Ñãmé' as 'John Doe'" 2>&1
 
54
--exec $MYSQL --table -e "SELECT 'John Doe' as '__tañgè Ñãmé'" 2>&1
 
55
--exec $MYSQL --table -e "SELECT '__tañgè Ñãmé' as 'John Doe'" 2>&1
47
56
 
48
57
#
49
58
# Bug#18265 -- mysql client: No longer right-justifies numeric columns
50
59
#
51
 
--exec $DRIZZLE -t test -e "create table t1 (i int, j int, k char(25)); insert into t1 (i) values (1); insert into t1 (k) values ('<----------------------->'); insert into t1 (k) values ('<-----'); insert into t1 (k) values ('Τη γλώσσα'); insert into t1 (k) values ('ᛖᚴ ᚷᛖᛏ'); select * from t1; DROP TABLE t1;"
 
60
--exec $MYSQL -t test -e "create table t1 (i int, j int, k char(25)); insert into t1 (i) values (1); insert into t1 (k) values ('<----------------------->'); insert into t1 (k) values ('<-----'); insert into t1 (k) values ('Τη γλώσσα'); insert into t1 (k) values ('ᛖᚴ ᚷᛖᛏ'); select * from t1; DROP TABLE t1;"
52
61
 
53
62
#
54
63
# "DESCRIBE" commands may return strange NULLness flags.
55
64
#
56
 
--exec $DRIZZLE test -e "create table t1 (i int, j int not null, k int); insert into t1 values (null, 1, null); select * from t1; describe t1; drop table t1;"
57
 
--exec $DRIZZLE -t test -e "create table t1 (i int, j int not null, k int); insert into t1 values (null, 1, null); select * from t1; describe t1; drop table t1;"
 
65
--exec $MYSQL test -e "create table t1 (i int, j int not null, k int); insert into t1 values (null, 1, null); select * from t1; describe t1; drop table t1;"
 
66
--exec $MYSQL -t test -e "create table t1 (i int, j int not null, k int); insert into t1 values (null, 1, null); select * from t1; describe t1; drop table t1;"
58
67
 
59
68
#
60
69
# Bug#19564: mysql displays NULL instead of space
61
70
#
62
 
--exec $DRIZZLE test -e "create table b19564 (i int, s1 char(1)); insert into b19564 values (1, 'x'); insert into b19564 values (2, NULL); insert into b19564 values (3, ' '); select * from b19564 order by i; drop table b19564;" 
63
 
--exec $DRIZZLE -t test -e "create table b19564 (i int, s1 char(1)); insert into b19564 values (1, 'x'); insert into b19564 values (2, NULL); insert into b19564 values (3, ' '); select * from b19564 order by i; drop table b19564;" 
 
71
--exec $MYSQL test -e "create table b19564 (i int, s1 char(1)); insert into b19564 values (1, 'x'); insert into b19564 values (2, NULL); insert into b19564 values (3, ' '); select * from b19564 order by i; drop table b19564;" 
 
72
--exec $MYSQL -t test -e "create table b19564 (i int, s1 char(1)); insert into b19564 values (1, 'x'); insert into b19564 values (2, NULL); insert into b19564 values (3, ' '); select * from b19564 order by i; drop table b19564;" 
64
73
 
65
74
#
66
75
# Bug#21618: NULL shown as empty string in client
67
76
#
68
 
--exec $DRIZZLE test -e "select unhex('zz');" 
69
 
--exec $DRIZZLE -t test -e "select unhex('zz');" 
 
77
--exec $MYSQL test -e "select unhex('zz');" 
 
78
--exec $MYSQL -t test -e "select unhex('zz');" 
70
79
 
71
80
# Bug#19265 describe command does not work from mysql prompt
72
81
#
73
82
 
74
83
create table t1(a int, b varchar(255), c int);
75
 
--exec $DRIZZLE test -e "desc t1"
76
 
--exec $DRIZZLE test -e "desc t1\g"
 
84
--exec $MYSQL test -e "desc t1"
 
85
--exec $MYSQL test -e "desc t1\g"
77
86
drop table t1;
78
87
 
79
88
#--disable_parsing
80
89
#
81
90
# Bug#21042     mysql client segfaults on importing a mysqldump export
82
91
#
83
 
#--error EE_ERROR_FIRST
84
 
#--exec $DRIZZLE test -e "connect verylongdatabasenamethatshouldblowthe256byteslongbufferincom_connectfunctionxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxendcccccccdxxxxxxxxxxxxxxxxxkskskskskkskskskskskskskskskskkskskskskkskskskskskskskskskend" 2>&1
 
92
#--error 1
 
93
#--exec $MYSQL test -e "connect verylongdatabasenamethatshouldblowthe256byteslongbufferincom_connectfunctionxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxkxendcccccccdxxxxxxxxxxxxxxxxxkskskskskkskskskskskskskskskskkskskskskkskskskskskskskskskend" 2>&1
85
94
#--enable_parsing
86
95
 
87
96
 
90
99
#
91
100
 
92
101
# if the client sees the 'use' within the comment, we haven't fixed
93
 
--exec echo "/*"          >  $DRIZZLETEST_VARDIR/tmp/bug20432.sql
94
 
--exec echo "use"         >> $DRIZZLETEST_VARDIR/tmp/bug20432.sql
95
 
--exec echo "*/"          >> $DRIZZLETEST_VARDIR/tmp/bug20432.sql
96
 
--exec $DRIZZLE              < $DRIZZLETEST_VARDIR/tmp/bug20432.sql 2>&1
 
102
--exec echo "/*"          >  $MYSQLTEST_VARDIR/tmp/bug20432.sql
 
103
--exec echo "use"         >> $MYSQLTEST_VARDIR/tmp/bug20432.sql
 
104
--exec echo "*/"          >> $MYSQLTEST_VARDIR/tmp/bug20432.sql
 
105
--exec $MYSQL              < $MYSQLTEST_VARDIR/tmp/bug20432.sql 2>&1
97
106
 
98
107
# SQL can have embedded comments => workie
99
 
--exec echo "select /*"   >  $DRIZZLETEST_VARDIR/tmp/bug20432.sql
100
 
--exec echo "use"         >> $DRIZZLETEST_VARDIR/tmp/bug20432.sql
101
 
--exec echo "*/ 1"        >> $DRIZZLETEST_VARDIR/tmp/bug20432.sql
102
 
--exec $DRIZZLE              < $DRIZZLETEST_VARDIR/tmp/bug20432.sql 2>&1
 
108
--exec echo "select /*"   >  $MYSQLTEST_VARDIR/tmp/bug20432.sql
 
109
--exec echo "use"         >> $MYSQLTEST_VARDIR/tmp/bug20432.sql
 
110
--exec echo "*/ 1"        >> $MYSQLTEST_VARDIR/tmp/bug20432.sql
 
111
--exec $MYSQL              < $MYSQLTEST_VARDIR/tmp/bug20432.sql 2>&1
103
112
 
104
113
# client commands on the other hand must be at BOL => error
105
 
--exec echo "/*"          >  $DRIZZLETEST_VARDIR/tmp/bug20432.sql
106
 
--exec echo "xxx"         >> $DRIZZLETEST_VARDIR/tmp/bug20432.sql
107
 
--exec echo "*/ use"      >> $DRIZZLETEST_VARDIR/tmp/bug20432.sql
108
 
--error EE_ERROR_FIRST
109
 
--exec $DRIZZLE              < $DRIZZLETEST_VARDIR/tmp/bug20432.sql 2>&1
 
114
--exec echo "/*"          >  $MYSQLTEST_VARDIR/tmp/bug20432.sql
 
115
--exec echo "xxx"         >> $MYSQLTEST_VARDIR/tmp/bug20432.sql
 
116
--exec echo "*/ use"      >> $MYSQLTEST_VARDIR/tmp/bug20432.sql
 
117
--error 1
 
118
--exec $MYSQL              < $MYSQLTEST_VARDIR/tmp/bug20432.sql 2>&1
110
119
 
111
120
# client comment recognized, but parameter missing => error
112
 
--exec echo "use"         >  $DRIZZLETEST_VARDIR/tmp/bug20432.sql
113
 
--exec $DRIZZLE              < $DRIZZLETEST_VARDIR/tmp/bug20432.sql 2>&1
 
121
--exec echo "use"         >  $MYSQLTEST_VARDIR/tmp/bug20432.sql
 
122
--exec $MYSQL              < $MYSQLTEST_VARDIR/tmp/bug20432.sql 2>&1
114
123
 
115
124
#
116
125
# Bug #20328: mysql client interprets commands in comments
117
126
#
118
 
#--exec $DRIZZLE -e "help" > $DRIZZLETEST_VARDIR/tmp/bug20328_1.result
119
 
#--exec $DRIZZLE -e "help " > $DRIZZLETEST_VARDIR/tmp/bug20328_2.result
120
 
#--diff_files $DRIZZLETEST_VARDIR/tmp/bug20328_1.result $DRIZZLETEST_VARDIR/tmp/bug20328_2.result
 
127
#--exec $MYSQL -e "help" > $MYSQLTEST_VARDIR/tmp/bug20328_1.result
 
128
#--exec $MYSQL -e "help " > $MYSQLTEST_VARDIR/tmp/bug20328_2.result
 
129
#--diff_files $MYSQLTEST_VARDIR/tmp/bug20328_1.result $MYSQLTEST_VARDIR/tmp/bug20328_2.result
121
130
 
122
131
#
123
132
# Bug #19216: Client crashes on long SELECT
127
136
#   max number that can fit in a 16 bit number.
128
137
 
129
138
#--perl
130
 
#open(FILE,">","$ENV{'DRIZZLETEST_VARDIR'}/tmp/b19216.tmp") or die;
 
139
#open(FILE,">","$ENV{'MYSQLTEST_VARDIR'}/tmp/b19216.tmp") or die;
131
140
#print FILE "select\n";
132
141
#print FILE "'a','a','a','a','a','a','a','a','a','a','a','a','a','a','a','a','a','a','a','a',\n" x 3400;
133
142
#print FILE "'b';\n";
135
144
#EOF
136
145
 
137
146
#--disable_query_log
138
 
#--exec $DRIZZLE < $DRIZZLETEST_VARDIR/tmp/b19216.tmp >/dev/null
 
147
#--exec $MYSQL < $MYSQLTEST_VARDIR/tmp/b19216.tmp >/dev/null
139
148
#--enable_query_log
140
149
#
141
 
#--remove_file $DRIZZLETEST_VARDIR/tmp/b19216.tmp
 
150
#--remove_file $MYSQLTEST_VARDIR/tmp/b19216.tmp
142
151
 
143
152
#
144
153
# Bug#17583: mysql drops connection when stdout is not writable
154
163
insert into t17583 select a from t17583;
155
164
# Close to the minimal data needed to exercise bug.
156
165
select count(*) from t17583;
157
 
--exec echo "select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; " |$DRIZZLE test >&-
 
166
--exec echo "select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; select count(*) from t17583; " |$MYSQL test >&-
158
167
drop table t17583;
159
168
 
160
169
#
163
172
#
164
173
#
165
174
--echo Test connect without db- or host-name => reconnect
166
 
--exec $DRIZZLE test -e "\r" 2>&1
167
 
--exec $DRIZZLE test -e "connect" 2>&1
 
175
--exec $MYSQL test -e "\r" 2>&1
 
176
--exec $MYSQL test -e "connect" 2>&1
168
177
 
169
178
--echo Test connect with dbname only => new dbname, old hostname
170
 
--exec $DRIZZLE test -e "\r test" 2>&1
171
 
--exec $DRIZZLE test -e "connect test" 2>&1
172
 
--exec $DRIZZLE test -e "\rtest" 2>&1
173
 
--error EE_ERROR_FIRST
174
 
--exec $DRIZZLE test -e "connecttest" 2>&1
 
179
--exec $MYSQL test -e "\r test" 2>&1
 
180
--exec $MYSQL test -e "connect test" 2>&1
 
181
--exec $MYSQL test -e "\rtest" 2>&1
 
182
--error 1
 
183
--exec $MYSQL test -e "connecttest" 2>&1
175
184
 
176
185
--echo Test connect with _invalid_ dbname only => new invalid dbname, old hostname
177
 
--error EE_ERROR_FIRST
178
 
--exec $DRIZZLE test -e "\r invalid" 2>&1
179
 
--error EE_ERROR_FIRST
180
 
--exec $DRIZZLE test -e "connect invalid" 2>&1
 
186
--error 1
 
187
--exec $MYSQL test -e "\r invalid" 2>&1
 
188
--error 1
 
189
--exec $MYSQL test -e "connect invalid" 2>&1
181
190
 
182
191
--echo Test connect with dbname + hostname
183
 
#--exec $DRIZZLE test -e "\r test localhost" 2>&1
184
 
#--exec $DRIZZLE test -e "connect test localhost" 2>&1
 
192
#--exec $MYSQL test -e "\r test localhost" 2>&1
 
193
#--exec $MYSQL test -e "connect test localhost" 2>&1
185
194
 
186
195
--echo Test connect with dbname + _invalid_ hostname
187
196
# Mask the errno of the error message
188
197
#--replace_regex /\([0-9]*\)/(errno)/
189
 
#--error EE_ERROR_FIRST
190
 
#--exec $DRIZZLE test -e "\r test invalid_hostname" 2>&1
 
198
#--error 1
 
199
#--exec $MYSQL test -e "\r test invalid_hostname" 2>&1
191
200
#--replace_regex /\([0-9]*\)/(errno)/
192
 
#--error EE_ERROR_FIRST
193
 
#--exec $DRIZZLE test -e "connect test invalid_hostname" 2>&1
 
201
#--error 1
 
202
#--exec $MYSQL test -e "connect test invalid_hostname" 2>&1
194
203
 
195
204
#--echo The commands reported in the bug report
196
205
#--replace_regex /\([0-9]*\)/(errno)/
197
 
#--error EE_ERROR_FIRST
198
 
#--exec $DRIZZLE test -e "\r\r\n\r\n cyril\ has\ found\ a\ bug\ :)XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" 2>&1
 
206
#--error 1
 
207
#--exec $MYSQL test -e "\r\r\n\r\n cyril\ has\ found\ a\ bug\ :)XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" 2>&1
199
208
#
200
209
##--replace_regex /\([0-9]*\)/(errno)/
201
 
##--error EE_ERROR_FIRST
202
 
##--exec echo '\r\r\n\r\n cyril\ has\ found\ a\ bug\ :)XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' | $DRIZZLE 2>&1
 
210
##--error 1
 
211
##--exec echo '\r\r\n\r\n cyril\ has\ found\ a\ bug\ :)XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' | $MYSQL 2>&1
203
212
#
204
213
#--echo Too long dbname
205
 
#--error EE_ERROR_FIRST
206
 
#--exec $DRIZZLE test -e "\r test_really_long_dbnamexxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx localhost" 2>&1
 
214
#--error 1
 
215
#--exec $MYSQL test -e "\r test_really_long_dbnamexxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx localhost" 2>&1
207
216
#
208
217
#--echo Too long hostname
209
218
#--replace_regex /\([0-9]*\)/(errno)/
210
 
#--error EE_ERROR_FIRST
211
 
#--exec $DRIZZLE test -e "\r  test cyrils_superlonghostnameXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" 2>&1
 
219
#--error 1
 
220
#--exec $MYSQL test -e "\r  test cyrils_superlonghostnameXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" 2>&1
212
221
 
213
222
 
214
223
#
217
226
#
218
227
 
219
228
# This should work just fine...
220
 
#--write_file $DRIZZLETEST_VARDIR/tmp/bug21412.sql
 
229
#--write_file $MYSQLTEST_VARDIR/tmp/bug21412.sql
221
230
#DELIMITER /
222
231
#SELECT 1/
223
232
#EOF
224
 
#--exec $DRIZZLE             < $DRIZZLETEST_VARDIR/tmp/bug21412.sql 2>&1
225
 
#remove_file $DRIZZLETEST_VARDIR/tmp/bug21412.sql;
 
233
#--exec $MYSQL             < $MYSQLTEST_VARDIR/tmp/bug21412.sql 2>&1
 
234
#remove_file $MYSQLTEST_VARDIR/tmp/bug21412.sql;
226
235
#
227
236
## This should give an error...
228
 
#--write_file $DRIZZLETEST_VARDIR/tmp/bug21412.sql
 
237
#--write_file $MYSQLTEST_VARDIR/tmp/bug21412.sql
229
238
#DELIMITER \
230
239
#EOF
231
 
#--exec $DRIZZLE             < $DRIZZLETEST_VARDIR/tmp/bug21412.sql 2>&1
232
 
#remove_file $DRIZZLETEST_VARDIR/tmp/bug21412.sql;
 
240
#--exec $MYSQL             < $MYSQLTEST_VARDIR/tmp/bug21412.sql 2>&1
 
241
#remove_file $MYSQLTEST_VARDIR/tmp/bug21412.sql;
233
242
#
234
243
## As should this...
235
 
#--write_file $DRIZZLETEST_VARDIR/tmp/bug21412.sql
 
244
#--write_file $MYSQLTEST_VARDIR/tmp/bug21412.sql
236
245
#DELIMITER \\
237
246
#EOF
238
 
#--exec $DRIZZLE             < $DRIZZLETEST_VARDIR/tmp/bug21412.sql 2>&1
239
 
#remove_file $DRIZZLETEST_VARDIR/tmp/bug21412.sql;
 
247
#--exec $MYSQL             < $MYSQLTEST_VARDIR/tmp/bug21412.sql 2>&1
 
248
#remove_file $MYSQLTEST_VARDIR/tmp/bug21412.sql;
240
249
#
241
250
#
242
251
# Some coverage of not normally used parts
243
252
#
244
253
 
245
254
--disable_query_log
246
 
#--exec $DRIZZLE test -e "show status" 2>&1 > /dev/null
247
 
--exec $DRIZZLE --help 2>&1 > /dev/null
248
 
--exec $DRIZZLE --version 2>&1 > /dev/null
 
255
#--exec $MYSQL test -e "show status" 2>&1 > /dev/null
 
256
--exec $MYSQL --help 2>&1 > /dev/null
 
257
--exec $MYSQL --version 2>&1 > /dev/null
249
258
--enable_query_log
250
259
 
251
260
#
253
262
#
254
263
 
255
264
# allow error 7(invalid argument) since --pager does not always exist in mysql
256
 
--error EE_OK,EE_ERROR_FIRST,EE_DELETE
257
 
--exec $DRIZZLE --pager="540bytelengthstringxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -e "select 1" > /dev/null 2>&1
 
265
--error 0,1,7
 
266
--exec $MYSQL --pager="540bytelengthstringxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -e "select 1" > /dev/null 2>&1
258
267
 
259
268
#
260
269
# Bug#29323 mysql client only accetps ANSI encoded files
261
270
#
262
 
#--write_file $DRIZZLETEST_VARDIR/tmp/bug29323.sql
 
271
#--write_file $MYSQLTEST_VARDIR/tmp/bug29323.sql
263
272
#select "This is a file starting with UTF8 BOM 0xEFBBBF";
264
273
#EOF
265
 
#--exec $DRIZZLE < $DRIZZLETEST_VARDIR/tmp/bug29323.sql 2>&1
266
 
#remove_file $DRIZZLETEST_VARDIR/tmp/bug29323.sql;
 
274
#--exec $MYSQL < $MYSQLTEST_VARDIR/tmp/bug29323.sql 2>&1
 
275
#remove_file $MYSQLTEST_VARDIR/tmp/bug29323.sql;
267
276
 
268
277
--echo End of 5.0 tests
269
278
 
271
280
# Bug#26780: patch to add auto vertical output option to the cli.
272
281
#
273
282
# Make this wide enough that it will wrap almost everywhere.
274
 
#--exec $DRIZZLE test --auto-vertical-output --table -e "SELECT 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0;"
 
283
#--exec $MYSQL test --auto-vertical-output --table -e "SELECT 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0;"
275
284
# Too short to wrap.
276
 
#--exec $DRIZZLE test --auto-vertical-output --table -e "SELECT 1;"
 
285
#--exec $MYSQL test --auto-vertical-output --table -e "SELECT 1;"
277
286
 
278
287
--echo End of tests