~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/mysql.test

  • Committer: Brian Aker
  • Date: 2009-06-05 23:10:06 UTC
  • mto: This revision was merged to the branch mainline in revision 1055.
  • Revision ID: brian@gaz-20090605231006-01nyw7pfpj2z2v8p
Remove guts in parser for LOCK TABLE.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
#
47
38
# Bug#16859 -- NULLs in columns must not truncate data as if a C-language "string".
48
39
#
49
40
#--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