summaryrefslogtreecommitdiff
path: root/mysql-test/t
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2012-07-31 18:32:46 +0200
committerSergei Golubchik <sergii@pisem.net>2012-07-31 18:32:46 +0200
commit42ea25d4c51b5466b4b03a29abe480e763732cf2 (patch)
tree80642573c4320e628ce495d166a551aa5048d51d /mysql-test/t
parent9705ad5e339723382f914c48184441906359283b (diff)
downloadmariadb-git-42ea25d4c51b5466b4b03a29abe480e763732cf2.tar.gz
MDEV-375 Server crashes in THD::print_aborted_warning with log_warnings > 3
Don't use ER(xxx) in THD::close_connection(), when current_thd is already reset to NULL. Prefer ER_THD() or ER_DEFAULT() instead.
Diffstat (limited to 'mysql-test/t')
-rw-r--r--mysql-test/t/mdev375.test20
1 files changed, 20 insertions, 0 deletions
diff --git a/mysql-test/t/mdev375.test b/mysql-test/t/mdev375.test
new file mode 100644
index 00000000000..547d57aa587
--- /dev/null
+++ b/mysql-test/t/mdev375.test
@@ -0,0 +1,20 @@
+#
+# MDEV-375 Server crashes in THD::print_aborted_warning with log_warnings > 3
+#
+SET GLOBAL log_warnings=4;
+SET GLOBAL max_connections=2;
+
+--connect (con1,localhost,root,,)
+SELECT 1;
+--connect (con2,localhost,root,,)
+SELECT 2;
+--disable_query_log
+--error ER_CON_COUNT_ERROR
+--connect (con3,localhost,root,,)
+--enable_query_log
+
+--connection default
+SELECT 0;
+
+SET GLOBAL log_warnings=default;
+SET GLOBAL max_connections=default;