~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/tests/t/innodb.test

  • Committer: Brian Aker
  • Date: 2010-12-18 00:43:02 UTC
  • Revision ID: brian@tangent.org-20101218004302-4ivzuuzdkblyqe18
Refactor naming for integers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
304
304
select * from t1;
305
305
update t1 set col2='7' where col1='4';
306
306
select * from t1;
307
 
alter table t1 add co3 int not null;
 
307
ALTER TABLE t1 ADD co3 INT DEFAULT 42 NOT NULL;
308
308
select * from t1;
309
309
update t1 set col2='9' where col1='2';
310
310
select * from t1;