mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
1efdd5a572
(and to follow the naming conventons). keep old debug variable, but mark it as deprecated.
15 lines
320 B
Text
15 lines
320 B
Text
#
|
|
# Bug#40992 - InnoDB: Crash when engine_condition_pushdown is on
|
|
#
|
|
set session debug_dbug="+d,optimizer_innodb_icp";
|
|
CREATE TABLE t (
|
|
dummy INT PRIMARY KEY,
|
|
a INT UNIQUE,
|
|
b int
|
|
) ENGINE=InnoDB;
|
|
INSERT INTO t VALUES (1,1,1),(3,3,3),(5,5,5);
|
|
SELECT * FROM t WHERE a > 2 FOR UPDATE;
|
|
dummy a b
|
|
3 3 3
|
|
5 5 5
|
|
DROP TABLE t;
|