~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_misc.result

  • Committer: Monty Taylor
  • Date: 2009-01-06 18:46:25 UTC
  • mto: This revision was merged to the branch mainline in revision 762.
  • Revision ID: mordred@inaugust.com-20090106184625-kqu7nsnwjwm5jv4s
Enabled dirty_close.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
show create table t1;
37
37
Table   Create Table
38
38
t1      CREATE TABLE `t1` (
39
 
  `uuid()` varchar(36) DEFAULT NULL,
40
 
  `length(uuid())` int DEFAULT NULL
41
 
) ENGINE=DEFAULT
 
39
  `uuid()` varchar(36),
 
40
  `length(uuid())` int
 
41
) ENGINE=InnoDB
42
42
drop table t1;
43
43
End of 5.0 tests
44
44
select connection_id() > 0;