~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/case.test

  • Committer: Vladimir Kolesnikov
  • Date: 2009-03-25 09:18:25 UTC
  • mto: (968.2.17 mordred)
  • mto: This revision was merged to the branch mainline in revision 971.
  • Revision ID: vladimir@primebase.org-20090325091825-gnw5opo5xtprd6k0
test generalizations

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