From e7703f44dd4e7707d8bcc123cafc61aa939f8a36 Mon Sep 17 00:00:00 2001 From: Roman Nozdrin Date: Sun, 16 Feb 2020 07:13:34 +0000 Subject: [PATCH] MCOL-3791 This patch implicitly enables disk space preallocation for non-compressed abbreviated extents as it worked before MCOL-498. --- writeengine/shared/we_fileop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/writeengine/shared/we_fileop.cpp b/writeengine/shared/we_fileop.cpp index d4f9f1665..f4c65ed52 100644 --- a/writeengine/shared/we_fileop.cpp +++ b/writeengine/shared/we_fileop.cpp @@ -1130,7 +1130,7 @@ int FileOp::initColumnExtent( // Couldn't avoid preallocation for full extents, // e.g. ADD COLUMN DDL b/c CS has to fill the file // with empty magics. - if ( !bOptExtension ) + if ( !bOptExtension || !m_compressionType ) { #ifdef PROFILE Stats::startParseEvent(WE_STATS_INIT_COL_EXTENT);