~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/csv_alter_table.test

  • Committer: Brian Aker
  • Date: 2008-12-24 19:41:08 UTC
  • mfrom: (722.2.32 devel)
  • Revision ID: brian@tangent.org-20081224194108-4140ku9dgjkyk97m
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
#                             
18
18
#############################################################################
19
19
-- echo # ===== csv_alter_table.1 =====
20
20
DROP TABLE IF EXISTS t1;
21
21
 
22
22
CREATE TABLE t1 (a int NOT NULL) ENGINE = CSV;
23
23
ALTER TABLE t1 ADD COLUMN b CHAR(5) NOT NULL;
38
36
# These queries should not succeed / should throw errors
39
37
#############################################################################
40
38
-- echo # ===== csv_alter_table.2 =====
41
39
DROP TABLE IF EXISTS t1;
42
40
 
43
41
CREATE TABLE t1 (a int NOT NULL) ENGINE = CSV;
44
42
--error ER_CHECK_NOT_IMPLEMENTED