~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/regression/t/798959.test

  • Committer: Olaf van der Spek
  • Date: 2011-07-24 16:27:12 UTC
  • mfrom: (2371 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2384.
  • Revision ID: olafvdspek@gmail.com-20110724162712-nrut3uifjnu295xs
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SELECT IF(true, result_type(1), 'yes');
 
2
SELECT IF(true, typeof(1), 'yes');
 
3
SELECT IF(true, result_type(true), 'yes');
 
4
SELECT IF(true, typeof(true), 'yes');
 
5
SELECT IF(true, true, 'yes');
 
6
SELECT IF(true, true, '');