~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_math.result

Phase 1 - temporal changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
122.34661925802624      405.40353712197725
211
211
644.97318737672 405.40353712197725
212
212
DROP TABLE t1;
213
 
create table t1 (a varchar(90), ts datetime not null, index (a)) engine=innodb;
214
 
insert into t1 values ('http://www.foo.com/', now());
215
 
select a from t1 where a='http://www.foo.com/' order by abs(timediff(ts, 0));
216
 
a
217
 
http://www.foo.com/
218
 
drop table t1;
219
213
select round(111,-10);
220
214
round(111,-10)
221
215
0