~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/csv_alter_table.result

  • Committer: devananda
  • Date: 2009-06-30 14:27:54 UTC
  • mfrom: (1030.2.4 trunk)
  • mto: (1093.1.7 captain)
  • mto: This revision was merged to the branch mainline in revision 1095.
  • Revision ID: devananda.vdv@gmail.com-20090630142754-vm9w374yxkf1pikc
mergeĀ fromĀ lp

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# ===== csv_alter_table.1 =====
2
2
DROP TABLE IF EXISTS t1;
3
 
CREATE TABLE t1 (a int NOT NULL) ENGINE = CSV;
 
3
CREATE TEMPORARY TABLE t1 (a int NOT NULL) ENGINE = CSV;
4
4
ALTER TABLE t1 ADD COLUMN b CHAR(5) NOT NULL;
5
5
DESC t1;
6
6
Field   Type    Null    Key     Default Extra
23
23
DROP TABLE IF EXISTS t1;
24
24
Warnings:
25
25
Note    1051    Unknown table 't1'
26
 
CREATE TABLE t1 (a int NOT NULL) ENGINE = CSV;
 
26
CREATE TEMPORARY TABLE t1 (a int NOT NULL) ENGINE = CSV;
27
27
ALTER TABLE t1 ADD COLUMN b CHAR(5);
28
28
ERROR 42000: The storage engine for the table doesn't support nullable columns
29
29
DESC t1;