From 0fd344119b73eecf80c9abc6b75ca758f340f862 Mon Sep 17 00:00:00 2001 From: jinhelin Date: Tue, 31 Dec 2024 15:47:30 +0800 Subject: [PATCH] *: enable new serdes format of DataTypeString (#9742) close pingcap/tiflash#9673 Co-authored-by: JaySon --- dbms/src/Storages/FormatVersion.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dbms/src/Storages/FormatVersion.h b/dbms/src/Storages/FormatVersion.h index a63dcce2889..86570de429a 100644 --- a/dbms/src/Storages/FormatVersion.h +++ b/dbms/src/Storages/FormatVersion.h @@ -203,9 +203,9 @@ inline static const StorageFormatVersion STORAGE_FORMAT_V103 = StorageFormatVers }; // Default storage format for non-disaggregated mode -inline StorageFormatVersion STORAGE_FORMAT_CURRENT = STORAGE_FORMAT_V7; +inline StorageFormatVersion STORAGE_FORMAT_CURRENT = STORAGE_FORMAT_V8; // Default storage format for disaggregated mode -inline static const StorageFormatVersion DEFAULT_STORAGE_FORMAT_FOR_DISAGG = STORAGE_FORMAT_V102; +inline static const StorageFormatVersion DEFAULT_STORAGE_FORMAT_FOR_DISAGG = STORAGE_FORMAT_V103; bool isStorageFormatForDisagg(UInt64 version); std::span getStorageFormatsForDisagg();