~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-05-15 17:06:35 UTC
  • mto: This revision was merged to the branch mainline in revision 1023.
  • Revision ID: brian@gaz-20090515170635-croy1u63a3gqdn9n
Dead convert functions for character sets.

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
20
21
DROP TABLE IF EXISTS t1;
 
22
--enable_warnings
21
23
 
22
24
CREATE TABLE t1 (a int NOT NULL) ENGINE = CSV;
23
25
ALTER TABLE t1 ADD COLUMN b CHAR(5) NOT NULL;
38
38
# These queries should not succeed / should throw errors
39
39
#############################################################################
40
40
-- echo # ===== csv_alter_table.2 =====
41
41
DROP TABLE IF EXISTS t1;
42
42
 
43
43
CREATE TABLE t1 (a int NOT NULL) ENGINE = CSV;
44
44
--error ER_CHECK_NOT_IMPLEMENTED