diff options
author | unknown <monty@mashka.mysql.fi> | 2003-07-01 14:38:38 +0300 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-07-01 14:38:38 +0300 |
commit | 23a9a5805cd258c5699e782cebdb5763acb1d85d (patch) | |
tree | 624e1dedb3475d160136c91bf352c5b698a469e8 /mysql-test/r/insert.result | |
parent | 0fe578f52a7b699cc4ff726428c9701530d9f827 (diff) | |
download | mariadb-git-23a9a5805cd258c5699e782cebdb5763acb1d85d.tar.gz |
Optimized old patches
Don't set field to DEFAULT value when set to NULL
mysql-test/r/insert.result:
Updated results after patch
sql/field_conv.cc:
Revert patch: Don't set field to DEFAULT value when set to NULL
sql/item_strfunc.cc:
Optimized patch for null handling with elt
sql/opt_range.cc:
Safety fix for range with null patch
Diffstat (limited to 'mysql-test/r/insert.result')
-rw-r--r-- | mysql-test/r/insert.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/insert.result b/mysql-test/r/insert.result index d019cfcbfa9..ebcb7721822 100644 --- a/mysql-test/r/insert.result +++ b/mysql-test/r/insert.result @@ -65,7 +65,7 @@ insert into t1 values (1), (NULL), (2); select * from t1; id 1 -8 +0 2 drop table t1; drop database if exists foo; |