~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Stewart Smith
  • Date: 2010-06-04 09:14:27 UTC
  • mto: (1666.2.3 build)
  • mto: This revision was merged to the branch mainline in revision 1596.
  • Revision ID: stewart@flamingspork.com-20100604091427-2boz4wt5onz9cxvc
move RAND() tests from func_math into rand_function/tests/ - there's a lot of them (not).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
explain extended select rand(999999),rand();
 
2
#
 
3
# Bug #7281: problem with rand()
 
4
#
 
5
 
 
6
--error 1054
 
7
select rand(rand);
 
8