~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/create.test

  • Committer: Monty Taylor
  • Date: 2009-02-11 23:45:52 UTC
  • mfrom: (881 drizzle)
  • mto: This revision was merged to the branch mainline in revision 885.
  • Revision ID: mordred@inaugust.com-20090211234552-d57gtqlup0pr7g13
Merged trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1341
1341
--echo
1342
1342
 
1343
1343
CREATE TABLE t3(c1 DATETIME NOT NULL);
 
1344
--error 1686 # Bad datetime
1344
1345
INSERT INTO t3 VALUES (0);
1345
1346
 
1346
1347
--echo
1347
 
# The following is broken for now... commenting out until I root out the issues
1348
 
# - JRP 2008-02-10
1349
 
# ALTER TABLE t3 ADD INDEX(c1);
 
1348
ALTER TABLE t3 ADD INDEX(c1);
1350
1349
 
1351
1350
--echo
1352
1351
--echo # -- Cleanup.