diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:04:16 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:04:16 +0000 |
commit | a68fb2d8219f6bccc573009600e9f23e89226a5e (patch) | |
tree | d742d35d14ae816e99293d2b01face30e9f3a46b /mysql-test/main/view_debug.test | |
parent | Initial commit. (diff) | |
download | mariadb-10.6-upstream.tar.xz mariadb-10.6-upstream.zip |
Adding upstream version 1:10.6.11.upstream/1%10.6.11upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mysql-test/main/view_debug.test')
-rw-r--r-- | mysql-test/main/view_debug.test | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/mysql-test/main/view_debug.test b/mysql-test/main/view_debug.test new file mode 100644 index 00000000..bf8074dd --- /dev/null +++ b/mysql-test/main/view_debug.test @@ -0,0 +1,37 @@ + +--source include/have_debug.inc +--source include/have_debug_sync.inc + +--echo # +--echo #MDEV-8087:Server crashed in Time_and_counter_tracker::incr_loops +--echo # + +CREATE PROCEDURE proc() SELECT * FROM v2; + +CREATE ALGORITHM = UNDEFINED VIEW v1 AS SELECT 1; +CREATE ALGORITHM = TEMPTABLE VIEW v2 AS SELECT 3 FROM v1; +DROP VIEW v1; + +--connect (con1,localhost,root,,test) + +--connect (con2,localhost,root,,test) + +--connection con1 +--error ER_VIEW_INVALID +CALL proc(); +SET DEBUG_SYNC= 'after_cached_view_opened SIGNAL oppp WAIT_FOR created'; +send CALL proc(); + +--connection con2 +SET DEBUG_SYNC= 'now WAIT_FOR oppp'; +SET DEBUG_SYNC= 'RESET'; +CREATE ALGORITHM = TEMPTABLE VIEW v1 AS SELECT 2; +SET DEBUG_SYNC= 'now SIGNAL created'; + +--connection con1 +--reap +SET DEBUG_SYNC= 'RESET'; + + +drop procedure proc; +drop view v1,v2; |