1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

BUG#9535 Warning for "create table t as select uuid();"

- Set max_length of Item_func_uuid to max_length*system_charset_info->mbmaxlen
  Note! Item_func_uuid should be set to use 'ascii' charset when hex(), format(), md5() etc will use 'ascii'
This commit is contained in:
msvensson@neptunus.(none)
2005-05-17 20:31:26 +02:00
parent 8d12a8b124
commit e6ba48b942
3 changed files with 22 additions and 1 deletions

View File

@@ -38,3 +38,11 @@ select a from t1 where mid(a+0,6,3) = ( mid(20040106123400,6,3) );
drop table t1;
# Test for BUG#9535
create table t1 as select uuid(), length(uuid());
show create table t1;
drop table t1;