~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2010-10-02 05:07:25 UTC
  • mto: (1817.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 1818.
  • Revision ID: mordred@inaugust.com-20101002050725-h1b30b0nr3leeoh1
Embed a modified version of parse_config_file. There are several more bugs
that we'll want to fix in it, and then submit upstream. Eventually we should
be able to remove this- but for now the version on lucid is completely
broken.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
--error 1582
 
1
--error ER_WRONG_PARAMCOUNT_TO_FUNCTION
2
2
select sleep();
3
 
--error 1582
 
3
--error ER_WRONG_PARAMCOUNT_TO_FUNCTION
4
4
select sleep(10,10);
5
5
select sleep('a');
6
6
show warnings;
12
12
select sleep(0);
13
13
select sleep(1);
14
14
select sleep(1.5);
15
 
select sleep(2);
16
 
select sleep(2.23);
17
 
select sleep(2.9);
18
 
select sleep(5);
19
 
select sleep(5.7);