mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
36eba98817
Changing the default server character set from latin1 to utf8mb4.
25 lines
730 B
Text
25 lines
730 B
Text
--source include/have_innodb.inc
|
|
--source include/test_db_charset_latin1.inc
|
|
|
|
#
|
|
# MDEV-19224 Assertion `marked_for_read()' failed in various places with long
|
|
# unique key
|
|
#
|
|
|
|
CREATE TABLE t1 (pk INT AUTO_INCREMENT PRIMARY KEY, a varchar(30000), UNIQUE (a)) ENGINE=innodb;
|
|
INSERT INTO t1 (a) VALUES (20),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL);
|
|
SELECT * FROM t1 WHERE a BETWEEN '1' AND '100';
|
|
DROP TABLE t1;
|
|
|
|
#
|
|
# MDEV-19252 Warning about assertion failure marked_for_write_or_computed()
|
|
# printed by release build with DBUG_ASSERT_AS_PRINTF, but no failure on debug
|
|
# build
|
|
#
|
|
|
|
CREATE TABLE t2 (n BLOB, UNIQUE(n));
|
|
INSERT INTO t2 VALUES (1);
|
|
DELETE FROM t2 WHERE n = 1;
|
|
DROP TABLE t2;
|
|
|
|
--source include/test_db_charset_restore.inc
|