~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/user_var.test

  • Committer: Monty Taylor
  • Date: 2010-12-26 00:22:34 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101226002234-2sb62sm2gs0iftuy
Fixing some of the innodb c++ casting issues.

Show diffs side-by-side

added added

removed removed

Lines of Context:
119
119
show create table t1;
120
120
drop table t1;
121
121
 
 
122
# This is not supported by Drizzle
 
123
--error ER_PARSE_ERROR
122
124
set @first_var= cast(NULL as integer);
123
 
 
124
 
create table t1 select @first_var;
125
 
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
126
 
show create table t1;
127
 
drop table t1;
 
125
#create table t1 select @first_var;
 
126
#--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
 
127
#show create table t1;
 
128
#drop table t1;
128
129
 
129
130
set @first_var= NULL;
130
131
create table t1 select @first_var;