~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_math.test

  • Committer: Brian Aker
  • Date: 2009-07-12 00:49:18 UTC
  • mfrom: (1063.9.51 brian-tmp-fix)
  • Revision ID: brian@gaz-20090712004918-chprmyj387ex6l8a
Merge Stewart

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)