178
178
create table t1(f1 varbinary(32), f2 varbinary(64));
179
179
select character_maximum_length, character_octet_length
184
184
## Bug#15307 GROUP_CONCAT() with ORDER BY returns empty set on information_schema
186
186
select column_type, group_concat(table_schema, '.', table_name), count(*) as num
188
188
table_schema='information_schema' and
189
189
(column_type = 'varchar(7)' or column_type = 'varchar(20)'
190
190
or column_type = 'varchar(27)')