Server IP : 49.212.180.16 / Your IP : 3.19.234.118 Web Server : Apache System : FreeBSD www2606.sakura.ne.jp 13.0-RELEASE-p14 FreeBSD 13.0-RELEASE-p14 #2: Mon Dec 9 13:54:55 JST 2024 root@www5301.sakura.ne.jp:/usr/obj/usr/src/amd64.amd64/sys/GENERIC amd64 User : utannto ( 1076) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/rs/mysql/5.1/mysql-test/t/ |
Upload File : |
#----------------------------------------------------------------------------- # 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;