diff options
author | Sergei Golubchik <serg@mariadb.org> | 2018-02-22 14:15:24 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2018-02-22 16:46:02 +0100 |
commit | e4a73acc63baa2180bf63f43be0f6c4ede335789 (patch) | |
tree | b564956be0d27354acbeccb45e23b54df676fdfc /mysql-test/suite/maria | |
parent | e119799a920e8096886a51ded305bf06609438a4 (diff) | |
parent | a04e4f531a7d0574171cc49e42a8fbd289e9c6c1 (diff) | |
download | mariadb-git-e4a73acc63baa2180bf63f43be0f6c4ede335789.tar.gz |
Merge branch '10.1' into 10.2
Diffstat (limited to 'mysql-test/suite/maria')
-rw-r--r-- | mysql-test/suite/maria/dynamic.result | 4 | ||||
-rw-r--r-- | mysql-test/suite/maria/dynamic.test | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/suite/maria/dynamic.result b/mysql-test/suite/maria/dynamic.result new file mode 100644 index 00000000000..1e87010e9ca --- /dev/null +++ b/mysql-test/suite/maria/dynamic.result @@ -0,0 +1,4 @@ +create table t1 (a blob, b varchar(20000)) engine=aria row_format=dynamic; +insert t1 (b) values (repeat('a', 20000)); +update t1 set b='b'; +drop table t1; diff --git a/mysql-test/suite/maria/dynamic.test b/mysql-test/suite/maria/dynamic.test new file mode 100644 index 00000000000..f8a1e98cd41 --- /dev/null +++ b/mysql-test/suite/maria/dynamic.test @@ -0,0 +1,7 @@ +# +# MDEV-13748 Assertion `status_var.local_memory_used == 0 || !debug_assert_on_not_freed_memory' failed in virtual THD::~THD after query with INTERSECT +# +create table t1 (a blob, b varchar(20000)) engine=aria row_format=dynamic; +insert t1 (b) values (repeat('a', 20000)); +update t1 set b='b'; +drop table t1; |