~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-12-13 00:15:23 UTC
  • mfrom: (642.1.24 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 676.
  • Revision ID: monty@inaugust.com-20081213001523-5eh5tsaunt0yqgl9
MergedĀ fromĀ Lee.

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);