~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Patrick Galbraith
  • Date: 2009-07-31 13:17:13 UTC
  • mto: (1154.1.2 staging)
  • mto: This revision was merged to the branch mainline in revision 1156.
  • Revision ID: patg@patrick-galbraiths-macbook-pro.local-20090731131713-qsv5bfb0p5gv0aon
Added sleep() tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
select sleep();
 
2
ERROR 42000: Incorrect parameters in the call to native function 'sleep'
 
3
select sleep(10,10);
 
4
ERROR 42000: Incorrect parameters in the call to native function 'sleep'
 
5
select sleep('a');
 
6
sleep('a')
 
7
0
 
8
select sleep(0);
 
9
sleep(0)
 
10
0
 
11
select sleep(1);
 
12
sleep(1)
 
13
0
 
14
select sleep(2);
 
15
sleep(2)
 
16
0
 
17
select sleep(5);
 
18
sleep(5)
 
19
0