~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/user_var.test

  • Committer: Brian Aker
  • Date: 2010-12-30 16:49:02 UTC
  • mfrom: (2040.2.3 clean)
  • Revision ID: brian@tangent.org-20101230164902-gi4cs3vxdunyds54
Rollup of assert(), etc.

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
124
122
set @first_var= cast(NULL as integer);
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;
 
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;
129
128
 
130
129
set @first_var= NULL;
131
130
create table t1 select @first_var;