summaryrefslogtreecommitdiff
path: root/storage
diff options
context:
space:
mode:
authorJan Lindström <jplindst@mariadb.org>2013-12-19 18:04:26 +0200
committerJan Lindström <jplindst@mariadb.org>2013-12-19 18:04:26 +0200
commit9ba590930a94e7cdbd3a7c3f34702fa588fd504e (patch)
treea840f86fcb5ca943d0c61126097a33de5922c84a /storage
parent5e55d1ced52c52fb2f0508e1346059901a85960f (diff)
downloadmariadb-git-9ba590930a94e7cdbd3a7c3f34702fa588fd504e.tar.gz
Atomic writes require also atomic_blobs. Add that missing flag to
dictionary setting and from there it will be stored to table space.
Diffstat (limited to 'storage')
-rw-r--r--storage/innobase/include/dict0dict.ic1
1 files changed, 1 insertions, 0 deletions
diff --git a/storage/innobase/include/dict0dict.ic b/storage/innobase/include/dict0dict.ic
index 65967552b87..65c1bfca24f 100644
--- a/storage/innobase/include/dict0dict.ic
+++ b/storage/innobase/include/dict0dict.ic
@@ -856,6 +856,7 @@ dict_tf_set(
if (atomic_writes) {
*flags |= (1 << DICT_TF_POS_ATOMIC_WRITES);
ut_ad(dict_tf_get_atomic_writes(*flags) == TRUE);
+ *flags |= (1 << DICT_TF_POS_ATOMIC_BLOBS);
}
if (use_data_dir) {