~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/csv_alter_table.test

  • Committer: Brian Aker
  • Date: 2009-01-18 01:26:26 UTC
  • Revision ID: brian@tangent.org-20090118012626-68odlqhm6xt323az
Updated table_share tto its own file (yess, it will eventually go away).

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
#                             
18
18
#############################################################################
19
19
-- echo # ===== csv_alter_table.1 =====
20
 
--disable_warnings
21
20
DROP TABLE IF EXISTS t1;
22
 
--enable_warnings
23
21
 
24
22
CREATE TABLE t1 (a int NOT NULL) ENGINE = CSV;
25
23
ALTER TABLE t1 ADD COLUMN b CHAR(5) NOT NULL;