~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/sleep/tests/r/sleep.result

Merge Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
select sleep();
2
 
ERROR 42000: Incorrect parameter count in the call to native function 'sleep'
3
 
select sleep(10,10);
4
 
ERROR 42000: Incorrect parameter count in the call to native function 'sleep'
5
 
select sleep('a');
6
 
sleep('a')
7
 
NULL
8
 
Warnings:
9
 
Warning 1292    Truncated incorrect DOUBLE value: 'a'
10
 
show warnings;
11
 
Level   Code    Message
12
 
Warning 1292    Truncated incorrect DOUBLE value: 'a'
13
 
select sleep(0.001);
14
 
sleep(0.001)
15
 
0
16
 
select sleep(0.01);
17
 
sleep(0.01)
18
 
0
19
 
select sleep(0.02);
20
 
sleep(0.02)
21
 
0
22
 
select sleep(0.02);
23
 
sleep(0.02)
24
 
0
25
 
select sleep(0.13);
26
 
sleep(0.13)
27
 
0
28
 
select sleep(0);
29
 
sleep(0)
30
 
NULL
31
 
select sleep(1);
32
 
sleep(1)
33
 
0
34
 
select sleep(1.5);
35
 
sleep(1.5)
36
 
0