~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include/parser_bug21114.inc

  • Committer: Stewart Smith
  • Date: 2010-01-08 06:23:08 UTC
  • mto: (1502.1.30 fix-myisam)
  • mto: This revision was merged to the branch mainline in revision 1533.
  • Revision ID: stewart@flamingspork.com-20100108062308-tdr7vhfw9d81vghn
make the equals of KEY=VALUE required for CREATE TABLE options

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
  col2 int not null,
32
32
  col3 varchar(10),
33
33
  CONSTRAINT pk PRIMARY KEY (col1, col2)
34
 
) ENGINE $engine_type;
 
34
) ENGINE=$engine_type;
35
35
 
36
36
eval CREATE TABLE bug21114_child(
37
37
  pk int not null,
43
43
    REFERENCES $FCT(col1, col2),
44
44
  CONSTRAINT fk_fct_space FOREIGN KEY (fk_col3, fk_col4)
45
45
    REFERENCES $FCT (col1, col2)
46
 
) ENGINE $engine_type;
 
46
) ENGINE=$engine_type;
47
47
 
48
48
--enable_query_log
49
49
--enable_result_log