~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/case.test

  • Committer: Brian Aker
  • Date: 2009-01-21 23:38:47 UTC
  • mto: This revision was merged to the branch mainline in revision 801.
  • Revision ID: brian@tangent.org-20090121233847-jzjpp910j73ch3tw
Factor test-run for binlog removal

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/
66
64
SHOW CREATE TABLE t1;
67
65
DROP TABLE t1;
68
66
 
106
104
 COALESCE(1), COALESCE(1.0),COALESCE('a'),
107
105
 COALESCE(1,1.0), COALESCE(1,'1'),COALESCE(1.1,'1'),
108
106
 COALESCE('a' COLLATE utf8_bin,'b');
109
 
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
110
107
SHOW CREATE TABLE t1;
111
108
DROP TABLE t1;
112
109