1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-11-27 08:21:15 +03:00

MCOL-3791 This patch implicitly enables disk space preallocation for non-compressed

abbreviated extents as it worked before MCOL-498.
This commit is contained in:
Roman Nozdrin
2020-02-16 07:13:34 +00:00
committed by root
parent 815a1d8acb
commit e7703f44dd

View File

@@ -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);