~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/rot13/tests/t/basic.test

  • Committer: Mark Atwood
  • Date: 2009-03-04 01:02:00 UTC
  • mto: (968.2.20 mordred)
  • mto: This revision was merged to the branch mainline in revision 971.
  • Revision ID: me@mark.atwood.name-20090304010200-t1n4xxdoil2yae9a
add gearman logging plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SELECT ROT13("hello world");
2
 
 
3
 
# Check for error if no parameter provided
4
 
--error ER_WRONG_PARAMCOUNT_TO_FUNCTION
5
 
SELECT ROT13();
6
 
--error ER_WRONG_PARAMCOUNT_TO_FUNCTION
7
 
SELECT ROT13('foo','bar','zoo');
8
 
SELECT ROT13('');
9
 
SELECT ROT13("UPPERCASE works 2");
10
 
SELECT ROT13(ROT13("hello world"));