mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge 10.2 into 10.3
This commit is contained in:
@ -2665,8 +2665,20 @@ insert into t2 value (2);
|
||||
DROP VIEW v1;
|
||||
DROP TABLE t1,t2,t3;
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-16093
|
||||
--echo # Assertion `global_status_var.global_memory_used == 0' failed or
|
||||
--echo # bytes lost after inserting into table with non-null blob and trigger
|
||||
--echo #
|
||||
|
||||
--echo End of 10.1 tests.
|
||||
CREATE TABLE t1 (b BLOB NOT NULL);
|
||||
CREATE TRIGGER tr BEFORE UPDATE ON t1 FOR EACH ROW BEGIN END;
|
||||
INSERT INTO t1 VALUES ('foo');
|
||||
DROP TABLE t1;
|
||||
|
||||
--echo #
|
||||
--echo # End of 10.1 tests.
|
||||
--echo #
|
||||
|
||||
#
|
||||
# MDEV-10915 Count number of executed triggers
|
||||
|
Reference in New Issue
Block a user