~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/microtime_type/t/max.test

  • Committer: Brian Aker
  • Date: 2011-01-19 18:03:32 UTC
  • mfrom: (2088.8.12 timestamp)
  • mto: This revision was merged to the branch mainline in revision 2098.
  • Revision ID: brian@tangent.org-20110119180332-acfk5i8oofp63s40
Merge in time code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Just a quick test to make sure we are not limited to the old max
 
2
CREATE TABLE t2 (
 
3
  _value TIMESTAMP(6)
 
4
);
 
5
 
 
6
INSERT into t2 VALUES ("20660101000000.00000");
 
7
 
 
8
SELECT _value FROM t2;
 
9
    
 
10
DROP TABLE t2;