summaryrefslogtreecommitdiff
path: root/mysql-test/r/view_debug.result
diff options
context:
space:
mode:
authorMichael Widenius <monty@mariadb.org>2018-03-09 14:05:35 +0200
committerMonty <monty@mariadb.org>2018-03-29 13:59:44 +0300
commita7abddeffa6a760ce948c2dfb007cdf3f1a369d5 (patch)
tree70eb743fa965a17380bbc0ac88ae79ca1075b896 /mysql-test/r/view_debug.result
parentab1941266c59a19703a74b5593cf3f508a5752d7 (diff)
downloadmariadb-git-a7abddeffa6a760ce948c2dfb007cdf3f1a369d5.tar.gz
Create 'main' test directory and move 't' and 'r' there
Diffstat (limited to 'mysql-test/r/view_debug.result')
-rw-r--r--mysql-test/r/view_debug.result25
1 files changed, 0 insertions, 25 deletions
diff --git a/mysql-test/r/view_debug.result b/mysql-test/r/view_debug.result
deleted file mode 100644
index cfb70b5e74c..00000000000
--- a/mysql-test/r/view_debug.result
+++ /dev/null
@@ -1,25 +0,0 @@
-#
-#MDEV-8087:Server crashed in Time_and_counter_tracker::incr_loops
-#
-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;
-CALL proc();
-ERROR HY000: View 'test.v2' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them
-SET DEBUG_SYNC= 'after_cached_view_opened SIGNAL oppp WAIT_FOR created';
-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;
-3
-3
-SET DEBUG_SYNC= 'RESET';
-drop procedure proc;
-drop view v1,v2;