diff options
author | Innokentii Mokin <innokentii@ydb.tech> | 2024-12-04 02:43:41 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-04 02:43:41 +0300 |
commit | d6a279e3d04eea5a312a18d030ebd567bdd13a20 (patch) | |
tree | eb4b330cc4b0005b5ac30a75a4cdc749766365b0 | |
parent | e0f8546228f44bc912fba24c19a810fdde97f2a9 (diff) | |
download | ydb-d6a279e3d04eea5a312a18d030ebd567bdd13a20.tar.gz |
Fix olap linkage (#12265)
-rw-r--r-- | ydb/core/tx/columnshard/common/portion.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ydb/core/tx/columnshard/common/portion.h b/ydb/core/tx/columnshard/common/portion.h index 311cfa2326..444a1559d5 100644 --- a/ydb/core/tx/columnshard/common/portion.h +++ b/ydb/core/tx/columnshard/common/portion.h @@ -19,10 +19,10 @@ public: static constexpr const char* SPEC_COL_TX_ID = "_yql_tx_id"; static constexpr const char* SPEC_COL_WRITE_ID = "_yql_write_id"; static constexpr const char* SPEC_COL_DELETE_FLAG = "_yql_delete_flag"; - static const ui32 SPEC_COL_PLAN_STEP_INDEX = 0xffffff00; - static const ui32 SPEC_COL_TX_ID_INDEX = SPEC_COL_PLAN_STEP_INDEX + 1; - static const ui32 SPEC_COL_WRITE_ID_INDEX = SPEC_COL_PLAN_STEP_INDEX + 2; - static const ui32 SPEC_COL_DELETE_FLAG_INDEX = SPEC_COL_PLAN_STEP_INDEX + 3; + static constexpr const ui32 SPEC_COL_PLAN_STEP_INDEX = 0xffffff00; + static constexpr const ui32 SPEC_COL_TX_ID_INDEX = SPEC_COL_PLAN_STEP_INDEX + 1; + static constexpr const ui32 SPEC_COL_WRITE_ID_INDEX = SPEC_COL_PLAN_STEP_INDEX + 2; + static constexpr const ui32 SPEC_COL_DELETE_FLAG_INDEX = SPEC_COL_PLAN_STEP_INDEX + 3; }; } |