Skip to content

Commit 2cacb09

Browse files
authored
Merge bbee3d0 into 546620e
2 parents 546620e + bbee3d0 commit 2cacb09

File tree

8 files changed

+1
-175
lines changed

8 files changed

+1
-175
lines changed

ydb/core/tx/columnshard/common/portion.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@ class TSpecialColumns {
1717
public:
1818
static constexpr const char* SPEC_COL_PLAN_STEP = "_yql_plan_step";
1919
static constexpr const char* SPEC_COL_TX_ID = "_yql_tx_id";
20-
static constexpr const char* SPEC_COL_DELETE_FLAG = "_yql_delete_flag";
2120
static const ui32 SPEC_COL_PLAN_STEP_INDEX = 0xffffff00;
2221
static const ui32 SPEC_COL_TX_ID_INDEX = SPEC_COL_PLAN_STEP_INDEX + 1;
23-
static const ui32 SPEC_COL_DELETE_FLAG_INDEX = SPEC_COL_PLAN_STEP_INDEX + 2;
2422
};
2523

2624
}

ydb/core/tx/columnshard/engines/scheme/abstract/index_info.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,11 @@ class IIndexInfo {
99
public:
1010
enum class ESpecialColumn: ui32 {
1111
PLAN_STEP = NOlap::NPortion::TSpecialColumns::SPEC_COL_PLAN_STEP_INDEX,
12-
TX_ID = NOlap::NPortion::TSpecialColumns::SPEC_COL_TX_ID_INDEX,
13-
DELETE_FLAG = NOlap::NPortion::TSpecialColumns::SPEC_COL_DELETE_FLAG_INDEX
12+
TX_ID = NOlap::NPortion::TSpecialColumns::SPEC_COL_TX_ID_INDEX
1413
};
1514

1615
static constexpr const char* SPEC_COL_PLAN_STEP = NOlap::NPortion::TSpecialColumns::SPEC_COL_PLAN_STEP;
1716
static constexpr const char* SPEC_COL_TX_ID = NOlap::NPortion::TSpecialColumns::SPEC_COL_TX_ID;
18-
static constexpr const char* SPEC_COL_DELETE_FLAG = NOlap::NPortion::TSpecialColumns::SPEC_COL_DELETE_FLAG;
1917
static const TString STORE_INDEX_STATS_TABLE;
2018
static const TString STORE_INDEX_PORTION_STATS_TABLE;
2119
static const TString STORE_INDEX_GRANULE_STATS_TABLE;

ydb/core/tx/columnshard/engines/scheme/index_info.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,6 @@ TString TIndexInfo::GetColumnName(ui32 id, bool required) const {
9898
return SPEC_COL_PLAN_STEP;
9999
} else if (ESpecialColumn(id) == ESpecialColumn::TX_ID) {
100100
return SPEC_COL_TX_ID;
101-
} else if (ESpecialColumn(id) == ESpecialColumn::DELETE_FLAG) {
102-
return SPEC_COL_DELETE_FLAG;
103101
} else {
104102
const auto ci = Columns.find(id);
105103

ydb/core/tx/columnshard/normalizer/abstract/abstract.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ namespace NKikimr::NOlap {
5353
enum class ENormalizerSequentialId : ui32 {
5454
Granules = 1,
5555
Chunks,
56-
DeleteUnsupportedSpecialColumns,
5756
PortionsCleaner,
5857
TablesCleaner,
5958
// PortionsMetadata

ydb/core/tx/columnshard/normalizer/special_columns/normalizer.cpp

Lines changed: 0 additions & 131 deletions
This file was deleted.

ydb/core/tx/columnshard/normalizer/special_columns/normalizer.h

Lines changed: 0 additions & 24 deletions
This file was deleted.

ydb/core/tx/columnshard/normalizer/special_columns/ya.make

Lines changed: 0 additions & 11 deletions
This file was deleted.

ydb/core/tx/columnshard/ya.make

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ PEERDIR(
5656
ydb/core/tx/columnshard/export
5757
ydb/core/tx/columnshard/resource_subscriber
5858
ydb/core/tx/columnshard/normalizer/granule
59-
ydb/core/tx/columnshard/normalizer/special_columns
6059
ydb/core/tx/columnshard/normalizer/portion
6160
ydb/core/tx/columnshard/normalizer/tables
6261
ydb/core/tx/columnshard/blobs_action/storages_manager

0 commit comments

Comments
 (0)