~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/regression/t/728855.test

  • Committer: pcrews
  • Date: 2011-05-24 17:36:24 UTC
  • mfrom: (1099.4.232 drizzle)
  • Revision ID: pcrews@lucid32-20110524173624-mwr1bvq6fa1r01ao
Updated translations + 2011.05.18 tarball tag

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE TABLE t1 (a blob default '');
 
2
drop table t1;
 
3
CREATE TABLE t1 (a blob);
 
4
ALTER TABLE t1 ALTER a SET DEFAULT '';
 
5
DROP TABLE t1;
 
6
 
 
7
CREATE TABLE t1 (a timestamp default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP);
 
8
ALTER TABLE t1 ALTER a SET DEFAULT '2011-01-01 10:00:00';
 
9
SHOW CREATE TABLE t1;
 
10
DROP TABLE t1;
 
11
 
 
12
CREATE TABLE t1 (a timestamp ON UPDATE CURRENT_TIMESTAMP);
 
13
ALTER TABLE t1 ALTER a SET DEFAULT '2011-03-07 17:45:00';
 
14
SHOW CREATE TABLE t1;
 
15
DROP TABLE t1;