~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_math.test

  • Committer: Monty Taylor
  • Date: 2008-11-16 23:47:43 UTC
  • mto: (584.1.10 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081116234743-c38gmv0pa2kdefaj
BrokeĀ outĀ cached_item.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
explain extended select log10(100),log10(18),log10(-4),log10(0),log10(NULL);
28
28
select pow(10,log10(10)),power(2,4);
29
29
explain extended select pow(10,log10(10)),power(2,4);
 
30
set @@rand_seed1=10000000,@@rand_seed2=1000000;
 
31
select rand(999999),rand();
30
32
explain extended select rand(999999),rand();
31
33
select pi(),format(sin(pi()/2),6),format(cos(pi()/2),6),format(abs(tan(pi())),6),format(cot(1),6),format(asin(1),6),format(acos(0),6),format(atan(1),6);
32
34
explain extended select pi(),format(sin(pi()/2),6),format(cos(pi()/2),6),format(abs(tan(pi())),6),format(cot(1),6),format(asin(1),6),format(acos(0),6),format(atan(1),6);
120
122
 
121
123
DROP TABLE t1;  
122
124
 
 
125
#
 
126
# Bug #14009: use of abs() on null value causes problems with filesort
 
127
#
 
128
# InnoDB is required to reproduce the fault, but it is okay if we default to
 
129
# MyISAM when testing.
 
130
--disable_warnings
 
131
create table t1 (a varchar(90), ts datetime not null, index (a)) engine=innodb;
 
132
--enable_warnings
 
133
insert into t1 values ('http://www.foo.com/', now());
 
134
select a from t1 where a='http://www.foo.com/' order by abs(timediff(ts, 0));
 
135
drop table t1;
 
136
 
123
137
# End of 4.1 tests
124
138
 
125
139
#
139
153
#
140
154
# Bug#16678 FORMAT gives wrong result if client run with default-character-set=utf8
141
155
#
142
 
create TEMPORARY table t1
 
156
create table t1
143
157
(f1 varchar(32) not null,
144
158
 f2 int not null,
145
159
 f3 int not null default '0')
146
160
engine=myisam;
147
161
insert into t1 values ('zombie',0,0),('gold',1,10000),('silver',2,10000);
148
162
 
149
 
create TEMPORARY table t2
 
163
create table t2
150
164
(f1 int not null,
151
165
 f2 int not null,
152
166
 f3 int not null)