~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/regression_385808.test

  • Committer: Brian Aker
  • Date: 2010-06-02 23:40:24 UTC
  • mto: (1578.6.9 explain-drizzle)
  • mto: This revision was merged to the branch mainline in revision 1585.
  • Revision ID: brian@gir-2.local-20100602234024-x26qr3pfhvood1d7
keys and fields partial encapsulation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
CREATE TABLE IF NOT EXISTS t2 (a INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY)
34
34
  SELECT a FROM t1;
35
 
--error ER_DUP_ENTRY
 
35
--error 1062
36
36
CREATE TABLE IF NOT EXISTS t2 (a INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY)
37
37
  SELECT a FROM t1;
38
 
--error ER_DUP_ENTRY
 
38
--error 1062
39
39
CREATE TABLE IF NOT EXISTS t2 (a INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY)
40
40
  SELECT a FROM t1;
41
41