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

Bug#16837 (Missing #ifdef cause compile problem --without-row-based-replication):

Added #ifdef's to make code work even when the system is built without
row-based replication.
This commit is contained in:
mats@mysql.com
2006-05-16 11:16:23 +02:00
parent aa47bfa986
commit 66766ad596
16 changed files with 93 additions and 27 deletions

View File

@@ -3,3 +3,12 @@
--disable_warnings
drop table if exists t1;
--enable_warnings
#
# Bug#17530: Incorrect key truncation on table creation caused server crash.
#
create table t1(f1 varchar(800) binary not null, key(f1)) engine = innodb
character set utf8 collate utf8_general_ci;
insert into t1 values('aaa');
drop table t1;