~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_math.result

  • 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:
225
225
select truncate(15000111000111000155,-1);
226
226
truncate(15000111000111000155,-1)
227
227
15000111000111000150
228
 
create table t1
 
228
create TEMPORARY table t1
229
229
(f1 varchar(32) not null,
230
230
f2 int not null,
231
231
f3 int not null default '0')
232
232
engine=myisam;
233
233
insert into t1 values ('zombie',0,0),('gold',1,10000),('silver',2,10000);
234
 
create table t2
 
234
create TEMPORARY table t2
235
235
(f1 int not null,
236
236
f2 int not null,
237
237
f3 int not null)