~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/bigint.test

  • Committer: Brian Aker
  • Date: 2010-04-05 23:46:43 UTC
  • Revision ID: brian@gaz-20100405234643-0he3xnj902rc70r8
Fixing tests to work with PBXT.

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
#
130
130
 
131
131
create table t1 select 1 as 'a';
 
132
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
132
133
show create table t1;
133
134
drop table t1;
134
135
create table t1 select 9223372036854775809 as 'a';
 
136
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
135
137
show create table t1;
136
138
select * from t1;
137
139
drop table t1;