1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +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:
pcrews@pcrews-mac-local.local
2008-01-21 22:28:43 -05:00
parent e3ae6031e7
commit a55b4dd4fb
2 changed files with 0 additions and 4 deletions

View File

@ -36,8 +36,6 @@ ERROR HY000: Field 'a' doesn't have a default value
DROP TABLE t1;
# ===== csv_not_null.3 =====
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;
INSERT INTO t1 VALUES();
Warnings: