~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/parser_precedence.result

  • Committer: Monty
  • Date: 2008-11-28 23:12:37 UTC
  • mto: (632.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 631.
  • Revision ID: mordred@palanthas.inaugust.com-20081128231237-3ie7yeohoyq3cdxi
Updated test output with new and improved error messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
407
407
1       0       0
408
408
Testing that IS [NOT] TRUE/FALSE/UNKNOWN predicates are not associative
409
409
select TRUE IS TRUE IS TRUE IS TRUE;
410
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IS TRUE IS TRUE' at line 1
 
410
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'IS TRUE IS TRUE' at line 1
411
411
select FALSE IS NOT TRUE IS NOT TRUE IS NOT TRUE;
412
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IS NOT TRUE IS NOT TRUE' at line 1
 
412
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'IS NOT TRUE IS NOT TRUE' at line 1
413
413
select NULL IS FALSE IS FALSE IS FALSE;
414
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IS FALSE IS FALSE' at line 1
 
414
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'IS FALSE IS FALSE' at line 1
415
415
select TRUE IS NOT FALSE IS NOT FALSE IS NOT FALSE;
416
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IS NOT FALSE IS NOT FALSE' at line 1
 
416
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'IS NOT FALSE IS NOT FALSE' at line 1
417
417
select FALSE IS UNKNOWN IS UNKNOWN IS UNKNOWN;
418
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IS UNKNOWN IS UNKNOWN' at line 1
 
418
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'IS UNKNOWN IS UNKNOWN' at line 1
419
419
select TRUE IS NOT UNKNOWN IS NOT UNKNOWN IS NOT UNKNOWN;
420
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IS NOT UNKNOWN IS NOT UNKNOWN' at line 1
 
420
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'IS NOT UNKNOWN IS NOT UNKNOWN' at line 1
421
421
Testing that IS [NOT] NULL predicates are associative
422
422
select FALSE IS NULL IS NULL IS NULL;
423
423
FALSE IS NULL IS NULL IS NULL