~vkolesnikov/pbxt/pbxt-preload-test-bug

« back to all changes in this revision

Viewing changes to pbxt/mysql-test-update/mysql-test/r/func_math.result

  • Committer: paul-mccullagh
  • Date: 2008-03-10 11:36:34 UTC
  • Revision ID: paul-mccullagh-417ebf175a9c8ee6e5b3777d9e2398e1fb197391
Implemented full durability

Show diffs side-by-side

added added

removed removed

Lines of Context:
157
157
drop table t1;
158
158
select round(150, 2);
159
159
round(150, 2)
160
 
150.00
 
160
150
161
161
select ceil(0.09);
162
162
ceil(0.09)
163
163
1
168
168
show create table t1;
169
169
Table   Create Table
170
170
t1      CREATE TABLE `t1` (
171
 
  `round(1, 6)` decimal(7,6) NOT NULL DEFAULT '0.000000'
 
171
  `round(1, 6)` int(1) NOT NULL DEFAULT '0'
172
172
) ENGINE=PBXT DEFAULT CHARSET=latin1
173
173
select * from t1;
174
174
round(1, 6)
175
 
1.000000
 
175
1
176
176
drop table t1;
177
177
select abs(-2) * -2;
178
178
abs(-2) * -2