summaryrefslogtreecommitdiff
path: root/mysql-test/r/errors.result
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2017-06-15 20:16:18 +0200
committerSergei Golubchik <serg@mariadb.org>2017-06-22 12:56:33 +0200
commitb6ce68f450ce06db989febf4dc3e2428d6400dd7 (patch)
tree3f8bf4f580225b1e17c1af00ebad0884179f137d /mysql-test/r/errors.result
parentd937916c064d46076f5cec2280d91870ed7576d4 (diff)
downloadmariadb-git-b6ce68f450ce06db989febf4dc3e2428d6400dd7.tar.gz
MDEV-13012 Assertion `share->error' failed in discover_handlerton upon executing statement with max_session_mem_used = 8192
and MDEV-13011 Server crashes in THD::handle_condition or Assertion `! is_set() || m_can_overwrite_status' fails upon attempt to connect with max_session_mem_used = 8192 errors when a connection is killed in the * TABLE_SHARE::init_from_sql_statement_string() * THD::init() also, safety-wise, don't check max_mem_used on free() and when some error was already issued.
Diffstat (limited to 'mysql-test/r/errors.result')
-rw-r--r--mysql-test/r/errors.result4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/errors.result b/mysql-test/r/errors.result
index 23c77d3978c..bf75bf73862 100644
--- a/mysql-test/r/errors.result
+++ b/mysql-test/r/errors.result
@@ -168,3 +168,7 @@ UPDATE t1 SET a = 'new'
WHERE COLUMN_CREATE( 1, 'v', 1, 'w' ) IS NULL;
ERROR 22007: Illegal value used as argument of dynamic column function
drop table t1;
+set max_session_mem_used = 8192;
+select * from seq_1_to_1000;
+ERROR HY000: Engine SEQUENCE failed to discover table `test`.`seq_1_to_1000` with 'create table seq (seq bigint unsigned primary key)'
+set global max_session_mem_used = default;