diff options
author | unknown <msvensson@neptunus.(none)> | 2005-05-17 20:32:00 +0200 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2005-05-17 20:32:00 +0200 |
commit | 7d740ed61ca99fbb57a49021453eb951086b9900 (patch) | |
tree | 7da6dfa3fda848bde566b4c1dce66dea971850bc /mysql-test/r | |
parent | afaa3c8923288aaaa41f8f519bbc96f3b72b1d50 (diff) | |
parent | 804ce01a316d6f55f54e7580e7ef42384fb1d750 (diff) | |
download | mariadb-git-7d740ed61ca99fbb57a49021453eb951086b9900.tar.gz |
Merge neptunus.(none):/home/msvensson/mysql/bug9535
into neptunus.(none):/home/msvensson/mysql/mysql-5.0
sql/item_strfunc.h:
Auto merged
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/func_misc.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/func_misc.result b/mysql-test/r/func_misc.result index 1d9b813e68a..5e74e6fa68a 100644 --- a/mysql-test/r/func_misc.result +++ b/mysql-test/r/func_misc.result @@ -51,3 +51,11 @@ select a from t1 where mid(a+0,6,3) = ( mid(20040106123400,6,3) ); a 2004-01-06 12:34:00 drop table t1; +create table t1 as select uuid(), length(uuid()); +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `uuid()` varchar(36) character set utf8 NOT NULL default '', + `length(uuid())` int(10) NOT NULL default '0' +) ENGINE=MyISAM DEFAULT CHARSET=latin1 +drop table t1; |