diff options
author | monty@mishka.local <> | 2004-10-02 22:20:08 +0300 |
---|---|---|
committer | monty@mishka.local <> | 2004-10-02 22:20:08 +0300 |
commit | be4ca46fbe308faa155fade0875fe0edaa408ddd (patch) | |
tree | 6c0a1c36e51cd1d74e5e4c2f58e89904ff71fb46 /mysql-test/r/null_key.result | |
parent | 1fc7e6af85e848813315f8693a660f9783cc11d3 (diff) | |
download | mariadb-git-be4ca46fbe308faa155fade0875fe0edaa408ddd.tar.gz |
More fixes for strict mode:
More tests.
Better error messages.
Fixed bug when checking if we updated all needed columns for INSERT.
Give an error if we encounter a wrong float value during parsing.
Don't print DEFAULT for columns without a default value in SHOW CREATE/SHOW FIELDS.
Fixed UPDATE IGNORE when using STRICT mode.
Diffstat (limited to 'mysql-test/r/null_key.result')
-rw-r--r-- | mysql-test/r/null_key.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/null_key.result b/mysql-test/r/null_key.result index 7980c3f7f91..b9824cc4b81 100644 --- a/mysql-test/r/null_key.result +++ b/mysql-test/r/null_key.result @@ -342,7 +342,7 @@ index (id2) ); insert into t1 values(null,null),(1,1); Warnings: -Warning 1263 Data truncated; NULL supplied to NOT NULL column 'id2' at row 1 +Warning 1263 Column set to default value; NULL supplied to NOT NULL column 'id2' at row 1 select * from t1; id id2 NULL 0 |