diff --git a/ydb/core/protos/flat_scheme_op.proto b/ydb/core/protos/flat_scheme_op.proto index 72264bd9be0a..6206b32553ce 100644 --- a/ydb/core/protos/flat_scheme_op.proto +++ b/ydb/core/protos/flat_scheme_op.proto @@ -624,6 +624,7 @@ message TColumnTableSchema { repeated TOlapColumnDescription Columns = 1; repeated string KeyColumnNames = 2; + optional EColumnTableEngine Engine = 3; // Internal fields optional uint32 NextColumnId = 4; diff --git a/ydb/core/tx/columnshard/tables_manager.cpp b/ydb/core/tx/columnshard/tables_manager.cpp index e056e678391e..8e08e0ee864f 100644 --- a/ydb/core/tx/columnshard/tables_manager.cpp +++ b/ydb/core/tx/columnshard/tables_manager.cpp @@ -292,6 +292,7 @@ void TTablesManager::AddSchemaVersion( it->second = schema; } + versionInfo.MutableSchema()->SetEngine(NKikimrSchemeOp::COLUMN_ENGINE_REPLACING_TIMESERIES); Schema::SaveSchemaPresetVersionInfo(db, presetId, version, versionInfo); if (!PrimaryIndex) { PrimaryIndex = std::make_unique(TabletId, SchemaObjectsCache, DataAccessorsManager, StoragesManager, diff --git a/ydb/core/tx/schemeshard/schemeshard_impl.cpp b/ydb/core/tx/schemeshard/schemeshard_impl.cpp index e095a9e2b839..cf61e5002cda 100644 --- a/ydb/core/tx/schemeshard/schemeshard_impl.cpp +++ b/ydb/core/tx/schemeshard/schemeshard_impl.cpp @@ -3544,8 +3544,12 @@ void TSchemeShard::PersistColumnTable(NIceDb::TNiceDb& db, TPathId pathId, const TString serialized; TString serializedSharding; - Y_ABORT_UNLESS(tableInfo.Description.SerializeToString(&serialized)); - Y_ABORT_UNLESS(tableInfo.Description.GetSharding().SerializeToString(&serializedSharding)); + auto tableInfoCopy = tableInfo; + if (tableInfo.IsStandalone()) { + tableInfoCopy.Description.MutableSchema()->SetEngine(NKikimrSchemeOp::COLUMN_ENGINE_REPLACING_TIMESERIES); + } + Y_ABORT_UNLESS(tableInfoCopy.Description.SerializeToString(&serialized)); + Y_ABORT_UNLESS(tableInfoCopy.Description.GetSharding().SerializeToString(&serializedSharding)); if (isAlter) { db.Table().Key(pathId.LocalPathId).Update(