~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/sleep/tests/t/sleep.test

  • Committer: Monty Taylor
  • Date: 2008-11-16 06:29:53 UTC
  • mto: (584.1.9 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081116062953-ivdltjmfe009b5fr
Moved stuff into item/

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
--error ER_WRONG_PARAMCOUNT_TO_FUNCTION
2
 
select sleep();
3
 
--error ER_WRONG_PARAMCOUNT_TO_FUNCTION
4
 
select sleep(10,10);
5
 
select sleep('a');
6
 
show warnings;
7
 
select sleep(0.001);
8
 
select sleep(0.01);
9
 
select sleep(0.02);
10
 
select sleep(0.02);
11
 
select sleep(0.13);
12
 
select sleep(0);
13
 
select sleep(1);
14
 
select sleep(1.5);