~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/csv_alter_table.result

  • Committer: Monty Taylor
  • Date: 2009-01-09 07:02:24 UTC
  • mto: (779.1.2 devel)
  • mto: This revision was merged to the branch mainline in revision 784.
  • Revision ID: mordred@inaugust.com-20090109070224-prwl5p52mfql3zfw
Split out readline.

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
Warnings:
 
4
Note    1051    Unknown table 't1'
3
5
CREATE TABLE t1 (a int NOT NULL) ENGINE = CSV;
4
6
ALTER TABLE t1 ADD COLUMN b CHAR(5) NOT NULL;
5
7
DESC t1;