mirror of
https://github.com/MariaDB/server.git
synced 2026-04-26 18:25:30 +02:00
Addition to fix for bug #11314 (test case wasn't complete)
mysql-test/r/func_default.result: test result fixed mysql-test/t/func_default.test: test case fixed
This commit is contained in:
parent
0473ce99fa
commit
02b1eb988d
2 changed files with 7 additions and 1 deletions
|
|
@ -16,3 +16,8 @@ explain select * from t1 where str <> default(str);
|
|||
id select_type table type possible_keys key key_len ref rows Extra
|
||||
1 SIMPLE t1 system NULL NULL NULL NULL 1
|
||||
drop table t1;
|
||||
CREATE TABLE t1 (id int(11), s varchar(20));
|
||||
INSERT INTO t1 VALUES (1, 'one'), (2, 'two'), (3, 'three');
|
||||
SELECT s, 32 AS mi FROM t1 GROUP BY s HAVING DEFAULT(mi) IS NULL;
|
||||
ERROR HY000: Field 'mi' doesn't have a default value
|
||||
DROP TABLE t1;
|
||||
|
|
|
|||
|
|
@ -21,8 +21,9 @@ drop table t1;
|
|||
#
|
||||
# Bug #11314 (HAVING DEFAULT() hangs)
|
||||
#
|
||||
CREATE TABLE t1 (s varchar(20), id int(11));
|
||||
CREATE TABLE t1 (id int(11), s varchar(20));
|
||||
INSERT INTO t1 VALUES (1, 'one'), (2, 'two'), (3, 'three');
|
||||
--error 1364
|
||||
SELECT s, 32 AS mi FROM t1 GROUP BY s HAVING DEFAULT(mi) IS NULL;
|
||||
DROP TABLE t1;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue