Fix of .test and .result file for Bug#33558 - stress.ddl_csv requires nullable...

Fix of .test and .result file for Bug#33558 - stress.ddl_csv requires nullable columns which CSV does not support
parent e3ae6031
...@@ -36,8 +36,6 @@ ERROR HY000: Field 'a' doesn't have a default value ...@@ -36,8 +36,6 @@ ERROR HY000: Field 'a' doesn't have a default value
DROP TABLE t1; DROP TABLE t1;
# ===== csv_not_null.3 ===== # ===== csv_not_null.3 =====
DROP TABLE IF EXISTS t1; DROP TABLE IF EXISTS t1;
CREATE DATABASE csv_not_null_test;
USE csv_not_null_test;
CREATE TABLE t1 (a int NOT NULL, b char(10) NOT NULL) ENGINE = CSV; CREATE TABLE t1 (a int NOT NULL, b char(10) NOT NULL) ENGINE = CSV;
INSERT INTO t1 VALUES(); INSERT INTO t1 VALUES();
Warnings: Warnings:
......
...@@ -89,8 +89,6 @@ DROP TABLE t1; ...@@ -89,8 +89,6 @@ DROP TABLE t1;
DROP TABLE IF EXISTS t1; DROP TABLE IF EXISTS t1;
--enable_warnings --enable_warnings
CREATE DATABASE csv_not_null_test;
USE csv_not_null_test;
CREATE TABLE t1 (a int NOT NULL, b char(10) NOT NULL) ENGINE = CSV; CREATE TABLE t1 (a int NOT NULL, b char(10) NOT NULL) ENGINE = CSV;
INSERT INTO t1 VALUES(); INSERT INTO t1 VALUES();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment