1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Updated warning test

Updated all tests to catchup warnings for all field conversions


mysql-test/t/ctype_many.test:
  Disable the warnings for misc conversion
mysql-test/t/warnings.test:
  More warning tests
This commit is contained in:
unknown
2003-04-30 00:07:37 -07:00
parent 05af39d591
commit b857129454
21 changed files with 392 additions and 19 deletions

View File

@ -9,6 +9,8 @@ drop table if exists t1;
create table t1 (b char(0) not null);
create table if not exists t1 (b char(0) not null);
insert into t1 values (""),(null);
Warnings:
Warning 1261 Data truncated, NULL supplied to NOT NULL column 'b' at row 2
select * from t1;
b