UUID() function should return UUID, not VARCHAR(36)

This commit is contained in:
Sergei Golubchik 2021-09-14 12:08:01 +02:00
commit b1fab9bf4e
20 changed files with 204 additions and 182 deletions

View file

@ -106,6 +106,7 @@ select export_set(3, _latin1'foo', _utf8'bar', ',', 4);
create table t1 as select uuid(), length(uuid());
--enable_warnings
show create table t1;
select length(`uuid()`) from t1;
drop table t1;
#