1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Bug #2821 Table default character set affects LONGBLOB fields

This commit is contained in:
bar@bar.intranet.mysql.r18.ru
2004-03-19 11:37:49 +04:00
parent fc17aad767
commit f897144c4e
3 changed files with 31 additions and 2 deletions

View File

@ -183,6 +183,17 @@ show create table t1;
drop table t1;
#
# Bug#2821
# Test that table CHARACTER SET does not affect blobs
#
create table t1 (myblob longblob,mytext longtext)
default charset latin1 collate latin1_general_cs;
show create table t1;
alter table t1 character set latin2;
show create table t1;
drop table t1;
#
# Test ALTER TABLE ENABLE/DISABLE keys when things are locked
#