~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/case.test

  • Committer: Brian Aker
  • Date: 2009-04-01 01:25:04 UTC
  • mfrom: (968.2.27 mordred)
  • Revision ID: brian@tangent.org-20090401012504-mq9sxcmph5jc1fh6
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
 CASE WHEN 1 THEN 0.1e1 else 1 END AS c11,
62
62
 CASE WHEN 1 THEN 0.1e1 else '1' END AS c12
63
63
;
 
64
 
 
65
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
64
66
SHOW CREATE TABLE t1;
65
67
DROP TABLE t1;
66
68
 
104
106
 COALESCE(1), COALESCE(1.0),COALESCE('a'),
105
107
 COALESCE(1,1.0), COALESCE(1,'1'),COALESCE(1.1,'1'),
106
108
 COALESCE('a' COLLATE utf8_bin,'b');
 
109
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
107
110
SHOW CREATE TABLE t1;
108
111
DROP TABLE t1;
109
112