~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_time.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:
1160
1160
TIMESTAMPDIFF(FRAC_SECOND, '2008-02-17', '2008-02-18')
1161
1161
86400000000
1162
1162
SELECT DATE_ADD('2008-02-18', INTERVAL 1 FRAC_SECOND);
1163
 
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 'FRAC_SECOND)' at line 1
 
1163
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 'FRAC_SECOND)' at line 1
1164
1164
SELECT DATE_SUB('2008-02-18', INTERVAL 1 FRAC_SECOND);
1165
 
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 'FRAC_SECOND)' at line 1
 
1165
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 'FRAC_SECOND)' at line 1
1166
1166
SELECT '2008-02-18' + INTERVAL 1 FRAC_SECOND;
1167
 
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 'FRAC_SECOND' at line 1
 
1167
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 'FRAC_SECOND' at line 1
1168
1168
SELECT '2008-02-18' - INTERVAL 1 FRAC_SECOND;
1169
 
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 'FRAC_SECOND' at line 1
 
1169
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 'FRAC_SECOND' at line 1
1170
1170
End of 5.0 tests
1171
1171
select date_sub("0050-01-01 00:00:01",INTERVAL 2 SECOND);
1172
1172
date_sub("0050-01-01 00:00:01",INTERVAL 2 SECOND)