From 9ba590930a94e7cdbd3a7c3f34702fa588fd504e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Thu, 19 Dec 2013 18:04:26 +0200 Subject: [PATCH] Atomic writes require also atomic_blobs. Add that missing flag to dictionary setting and from there it will be stored to table space. --- storage/innobase/include/dict0dict.ic | 1 + 1 file changed, 1 insertion(+) 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) {