~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_misc.result

  • Committer: Brian Aker
  • Date: 2009-02-18 01:52:47 UTC
  • mfrom: (873.2.35 devel)
  • Revision ID: brian@tangent.org-20090218015247-1hjai6kkwuife5zs
Merge Monty

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),
40
 
  `length(uuid())` int
 
39
  `uuid()` varchar(36) DEFAULT NULL,
 
40
  `length(uuid())` int DEFAULT NULL
41
41
) ENGINE=InnoDB
42
42
drop table t1;
43
43
End of 5.0 tests