~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/month.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:
79
79
SELECT MONTH('09-9-2');
80
80
SELECT MONTH(20090916);
81
81
SELECT MONTH(20090916091528);
82
 
--error 1686 # Don't yet support DOUBLE -> DATETIME.
83
 
SELECT MONTH(20090916091528.000000);
 
82
SELECT MONTH(20090916091528.000001);
84
83
 
85
84
# Now test field values of different types
86
85