mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
63c73b52f3
Added new tests and corrected existing tests mysql-test/suite/stress/include/ddl3.inc: New tests added for Bug#33558 - Test "stress.ddl_csv needs nullable columns which CSV does not support Had to change CREATE TABLE statements to include NOT NULL due to CSV engine constraints mysql-test/suite/stress/r/ddl_archive.result: New tests added for Bug#33558 - Test "stress.ddl_csv needs nullable columns which CSV does not support Reproduced .result files due to changes in ddl3.inc mysql-test/suite/stress/r/ddl_csv.result: New tests added for Bug#33558 - Test "stress.ddl_csv needs nullable columns which CSV does not support Reproduced .result files due to changes in ddl3.inc mysql-test/suite/stress/r/ddl_innodb.result: New tests added for Bug#33558 - Test "stress.ddl_csv needs nullable columns which CSV does not support Reproduced .result files due to changes in ddl3.inc mysql-test/suite/stress/r/ddl_memory.result: New tests added for Bug#33558 - Test "stress.ddl_csv needs nullable columns which CSV does not support Reproduced .result files due to changes in ddl3.inc mysql-test/suite/stress/r/ddl_myisam.result: New tests added for Bug#33558 - Test "stress.ddl_csv needs nullable columns which CSV does not support Reproduced .result files due to changes in ddl3.inc mysql-test/suite/stress/r/ddl_ndb.result: New tests added for Bug#33558 - Test "stress.ddl_csv needs nullable columns which CSV does not support Reproduced .result files due to changes in ddl3.inc BitKeeper/etc/ignore: Added mysql-test/.DS_Store .DS_Store to the ignore list mysql-test/t/disabled.def: Disabled new test - csv_alter_table.test file due to Bug#33696. Cannot generate a .result file due to the Bug. These tests can be enabled to test the bug fix without needing new tests unless the developer feels the need to add more. mysql-test/r/csv_not_null.result: New tests added for Bug#33558 - Test "stress.ddl_csv needs nullable columns which CSV does not support mysql-test/t/csv_alter_table.test: New tests added for Bug#33558 - Test "stress.ddl_csv needs nullable columns which CSV does not support Designed to test fixes for Bug#33696 - CSV Engine allows nullable columns via ALTER TABLE statements mysql-test/t/csv_not_null.test: New tests added for Bug#33558 - Test "stress.ddl_csv needs nullable columns which CSV does not support
56 lines
1.8 KiB
Text
56 lines
1.8 KiB
Text
#-----------------------------------------------------------------------------
|
|
# csv_alter_table.test - .test file for MySQL regression suite
|
|
# Purpose: To test the behavior of the CSV engine
|
|
# Bug#31473 resulted in strict enforcement of non-nullable
|
|
# columns in CSV engine.
|
|
# Tests code for Bug#33696 - CSV engine allows NULLable
|
|
# Columns via ALTER TABLE statements
|
|
#
|
|
# Author pcrews
|
|
# Last modified: 2008-01-06
|
|
#-----------------------------------------------------------------------------
|
|
|
|
--source include/have_csv.inc
|
|
|
|
#############################################################################
|
|
# Testcase csv_alter_table.1: Positive test for ALTER table
|
|
#
|
|
#############################################################################
|
|
-- echo # ===== csv_alter_table.1 =====
|
|
-- disable_warnings
|
|
DROP TABLE IF EXISTS t1;
|
|
-- enable_warnings
|
|
|
|
CREATE TABLE t1 (a int NOT NULL) ENGINE = CSV;
|
|
ALTER TABLE t1 ADD COLUMN b CHAR(5) NOT NULL;
|
|
DESC t1;
|
|
ALTER TABLE t1 DROP COLUMN b;
|
|
DESC t1;
|
|
ALTER TABLE t1 MODIFY a BIGINT NOT NULL;
|
|
DESC t1;
|
|
ALTER TABLE t1 CHANGE a a INT NOT NULL;
|
|
DESC t1;
|
|
|
|
DROP TABLE t1;
|
|
|
|
#############################################################################
|
|
# Testcase csv_alter_table.2: Negative test for ALTER table
|
|
# These queries should not succeed / should throw errors
|
|
#############################################################################
|
|
-- echo # ===== csv_alter_table.2 =====
|
|
-- disable_warnings
|
|
DROP TABLE IF EXISTS t1;
|
|
-- enable_warnings
|
|
|
|
CREATE TABLE t1 (a int NOT NULL) ENGINE = CSV;
|
|
--error ER_CHECK_NOT_IMPLEMENTED
|
|
ALTER TABLE t1 ADD COLUMN b CHAR(5);
|
|
DESC t1;
|
|
--error ER_CHECK_NOT_IMPLEMENTED
|
|
ALTER TABLE t1 MODIFY a BIGINT;
|
|
DESC t1;
|
|
--error ER_CHECK_NOT_IMPLEMENTED
|
|
ALTER TABLE t1 CHANGE a a INT;
|
|
DESC t1;
|
|
|
|
DROP TABLE t1;
|