~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/innodb.result

  • Committer: Siddharth Prakash Singh
  • Date: 2010-03-26 19:25:23 UTC
  • mfrom: (1410 drizzle)
  • mto: This revision was merged to the branch mainline in revision 1425.
  • Revision ID: spsneo@spsneo-laptop-20100326192523-ibjlbt1p692vobtj
merging with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
2736
2736
INSERT INTO t2 VALUES (1);
2737
2737
ALTER TABLE t2 ADD FOREIGN KEY (a) REFERENCES t1 (a) ON DELETE SET NULL;
2738
2738
ALTER TABLE t2 MODIFY a INT NOT NULL;
2739
 
ERROR HY000: Error on rename of '#sql-temporary' to './test/t2' (errno: 150)
 
2739
ERROR HY000: Error on rename of '#sql-temporary' to 'test.t2' (errno: 150)
2740
2740
DELETE FROM t1;
2741
2741
DROP TABLE t2,t1;
2742
2742
CREATE TABLE t1 (a VARCHAR(5) COLLATE utf8_unicode_ci PRIMARY KEY)