diff options
author | Jan Lindström <jplindst@mariadb.org> | 2013-12-19 18:04:26 +0200 |
---|---|---|
committer | Jan Lindström <jplindst@mariadb.org> | 2013-12-19 18:04:26 +0200 |
commit | 9ba590930a94e7cdbd3a7c3f34702fa588fd504e (patch) | |
tree | a840f86fcb5ca943d0c61126097a33de5922c84a /storage | |
parent | 5e55d1ced52c52fb2f0508e1346059901a85960f (diff) | |
download | mariadb-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.ic | 1 |
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) { |