~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/csv_alter_table.test

  • Committer: Monty Taylor
  • Date: 2009-03-08 23:45:12 UTC
  • mto: (923.2.1 mordred)
  • mto: This revision was merged to the branch mainline in revision 921.
  • Revision ID: mordred@inaugust.com-20090308234512-tqkygxtu1iaig23s
Removed C99 isnan() usage, which allows us to remove the util/math.{cc,h} workarounds. Yay for standards!

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