~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/func_default.test

Merged in changes. 
Edited a the comment test case so deal with our version bump.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#
24
24
# Bug #11314 (HAVING DEFAULT() hangs)
25
25
#
26
 
CREATE TABLE t1 (id int, s varchar(20));
 
26
CREATE TABLE t1 (id int(11), s varchar(20));
27
27
INSERT INTO t1 VALUES (1, 'one'), (2, 'two'), (3, 'three');
28
28
--error 1364
29
29
SELECT s, 32 AS mi FROM t1 GROUP BY s HAVING DEFAULT(mi) IS NULL;