~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-03 22:55:32 UTC
  • mto: (1578.6.9 explain-drizzle)
  • mto: This revision was merged to the branch mainline in revision 1591.
  • Revision ID: brian@gir-2.local-20100603225532-5yuc8um41i4owavf
Additional pass through to remove raw field access.

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