~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2008-07-01 23:01:40 UTC
  • mfrom: (28.1.27 libtool-patch)
  • Revision ID: brian@tangent.org-20080701230140-8bs081cfx1mxugp4
More Cleanup around dead files/GNU Makefile warnings (just a merge from me)

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;