summaryrefslogtreecommitdiff
path: root/mysql-test/main/long_unique_bugs.result
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2019-02-27 15:43:57 -0500
committerSergei Golubchik <serg@mariadb.org>2019-02-27 23:27:43 -0500
commit9fd3e810e8af49105b65578292d271cca23f2c34 (patch)
tree5092af54f5dc1b44730b5ca8212228c5f91e1fad /mysql-test/main/long_unique_bugs.result
parent304f0084ef86b712358393b3b673e88612320957 (diff)
downloadmariadb-git-9fd3e810e8af49105b65578292d271cca23f2c34.tar.gz
MDEV-18747 InnoDB: Failing assertion: table->get_ref_count() == 0 upon dropping temporary table with unique blob
delete update handler clone also for temporary tables
Diffstat (limited to 'mysql-test/main/long_unique_bugs.result')
-rw-r--r--mysql-test/main/long_unique_bugs.result4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/main/long_unique_bugs.result b/mysql-test/main/long_unique_bugs.result
index d81125eda91..05ddceb63f8 100644
--- a/mysql-test/main/long_unique_bugs.result
+++ b/mysql-test/main/long_unique_bugs.result
@@ -49,3 +49,7 @@ pk f row_end > DATE'2030-01-01'
1 foo 0
1 bar 0
drop table t1;
+create temporary table t1 (f blob, unique(f)) engine=innodb;
+insert into t1 values (1);
+replace into t1 values (1);
+drop table t1;