mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Fix of .test and .result file for Bug#33558 - stress.ddl_csv requires nullable columns which CSV does not support
This commit is contained in:
@@ -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;
|
|||||||
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();
|
||||||
|
Reference in New Issue
Block a user