~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_math.test

  • Committer: Brian Aker
  • Date: 2009-06-16 00:53:22 UTC
  • mto: This revision was merged to the branch mainline in revision 1094.
  • Revision ID: brian@gaz-20090616005322-w0ode4jul9z8s2y9
Partial fix for tests for tmp

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
#
140
140
# Bug#16678 FORMAT gives wrong result if client run with default-character-set=utf8
141
141
#
142
 
create table t1
 
142
create TEMPORARY table t1
143
143
(f1 varchar(32) not null,
144
144
 f2 int not null,
145
145
 f3 int not null default '0')
146
146
engine=myisam;
147
147
insert into t1 values ('zombie',0,0),('gold',1,10000),('silver',2,10000);
148
148
 
149
 
create table t2
 
149
create TEMPORARY table t2
150
150
(f1 int not null,
151
151
 f2 int not null,
152
152
 f3 int not null)