~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/select.result

  • Committer: Brian Aker
  • Date: 2011-01-26 21:05:29 UTC
  • mto: (2122.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2123.
  • Revision ID: brian@tangent.org-20110126210529-2y7gt9xg9fz1b29c
Fix error message on date.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2818
2818
insert into t1 values(1,'2005-01-01'),(2,'2005-09-01'),(3,'2005-09-30'),
2819
2819
(4,'2005-10-01'),(5,'2005-12-30');
2820
2820
select * from t1 where f2 >= 0            order by f2;
2821
 
ERROR HY000: Received an invalid datetime value '0'.
 
2821
ERROR HY000: Received an invalid DATE value '0'.
2822
2822
select * from t1 where f2 >= '0000-00-00' order by f2;
2823
2823
ERROR HY000: Received an invalid datetime value '0000-00-00'.
2824
2824
select * from t1 where f2 >= '2005-09-31' order by f2;