~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/dayofmonth.test

  • Committer: Monty Taylor
  • Date: 2009-02-05 18:47:43 UTC
  • mfrom: (779.8.3 devel)
  • mto: This revision was merged to the branch mainline in revision 840.
  • Revision ID: mordred@inaugust.com-20090205184743-sn55g5b30qvdcy4h
Merged from me again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
SELECT DAYOFMONTH('09-9-2');
76
76
SELECT DAYOFMONTH(20090916);
77
77
SELECT DAYOFMONTH(20090916091528);
78
 
--error 1686 # Don't yet support DOUBLE -> DATETIME.
79
 
SELECT DAYOFMONTH(20090916091528.000000);
 
78
SELECT DAYOFMONTH(20090916091528.000001);
80
79
 
81
80
# Now test field values of different types
82
81