File tree Expand file tree Collapse file tree 5 files changed +13
-10
lines changed
ydb/core/statistics/aggregator Expand file tree Collapse file tree 5 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -99,3 +99,4 @@ ydb/tests/functional/ydb_cli test_ydb_impex.py.TestImpex.test_big_dataset*
99
99
ydb/tests/tools/pq_read/test test_timeout.py.TestTimeout.test_timeout
100
100
ydb/tests/functional/rename [test_rename.py */*] chunk chunk
101
101
ydb/tests/fq/yt/kqp_yt_file/part18 test.py.test[pg-join_brackets2-default.txt]
102
+ ydb/tests/functional/suite_tests test_postgres.py.TestPGSQL.test_sql_suite[plan-jointest/join2.test]
Original file line number Diff line number Diff line change @@ -593,7 +593,7 @@ void TStatisticsAggregator::ScheduleNextTraversal(NIceDb::TNiceDb& db) {
593
593
594
594
PersistForceTraversal (db);
595
595
596
- db.Table <Schema::ForceTraversals>().Key (operation.OperationId , operation.PathId .OwnerId , operation.PathId .LocalPathId ).Delete ();
596
+ // db.Table<Schema::ForceTraversals>().Key(operation.OperationId, operation.PathId.OwnerId, operation.PathId.LocalPathId).Delete();
597
597
ForceTraversals.pop_front ();
598
598
} else if (!ScheduleTraversalsByTime.Empty ()){
599
599
LastTraversalWasForce = false ;
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ struct TAggregatorSchema : NIceDb::Schema {
45
45
IsColumnTable
46
46
>;
47
47
};
48
-
48
+ /*
49
49
struct ForceTraversals : Table<5> {
50
50
struct OperationId : Column<1, NScheme::NTypeIds::Uint64> {};
51
51
struct OwnerId : Column<2, NScheme::NTypeIds::Uint64> {};
@@ -64,13 +64,13 @@ struct TAggregatorSchema : NIceDb::Schema {
64
64
Types
65
65
>;
66
66
};
67
-
67
+ */
68
68
using TTables = SchemaTables<
69
69
SysParams,
70
70
BaseStatistics,
71
71
ColumnStatistics,
72
- ScheduleTraversals,
73
- ForceTraversals
72
+ ScheduleTraversals
73
+ // ForceTraversals
74
74
>;
75
75
76
76
using TSettings = SchemaSettings<
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ struct TStatisticsAggregator::TTxAnalyzeTable : public TTxBase {
54
54
.ReplyToActorId = ReplyToActorId
55
55
};
56
56
Self->ForceTraversals .emplace_back (operation);
57
-
57
+ /*
58
58
db.Table<Schema::ForceTraversals>().Key(Self->NextForceTraversalOperationId, pathId.OwnerId, pathId.LocalPathId).Update(
59
59
NIceDb::TUpdate<Schema::ForceTraversals::OperationId>(Self->NextForceTraversalOperationId),
60
60
NIceDb::TUpdate<Schema::ForceTraversals::OwnerId>(pathId.OwnerId),
@@ -63,6 +63,7 @@ struct TStatisticsAggregator::TTxAnalyzeTable : public TTxBase {
63
63
NIceDb::TUpdate<Schema::ForceTraversals::ColumnTags>(columnTags),
64
64
NIceDb::TUpdate<Schema::ForceTraversals::Types>(types)
65
65
);
66
+ */
66
67
}
67
68
68
69
Self->PersistNextForceTraversalOperationId (db);
Original file line number Diff line number Diff line change @@ -22,13 +22,13 @@ struct TStatisticsAggregator::TTxInit : public TTxBase {
22
22
auto baseStatisticsRowset = db.Table <Schema::BaseStatistics>().Range ().Select ();
23
23
auto statisticsRowset = db.Table <Schema::ColumnStatistics>().Range ().Select ();
24
24
auto scheduleTraversalRowset = db.Table <Schema::ScheduleTraversals>().Range ().Select ();
25
- auto forceTraversalRowset = db.Table <Schema::ForceTraversals>().Range ().Select ();
25
+ // auto forceTraversalRowset = db.Table<Schema::ForceTraversals>().Range().Select();
26
26
27
27
if (!sysParamsRowset.IsReady () ||
28
28
!baseStatisticsRowset.IsReady () ||
29
29
!statisticsRowset.IsReady () ||
30
- !scheduleTraversalRowset.IsReady () ||
31
- !forceTraversalRowset.IsReady ())
30
+ !scheduleTraversalRowset.IsReady ())
31
+ // !forceTraversalRowset.IsReady())
32
32
{
33
33
return false ;
34
34
}
@@ -204,6 +204,7 @@ struct TStatisticsAggregator::TTxInit : public TTxBase {
204
204
}
205
205
206
206
// ForceTraversals
207
+ /*
207
208
{
208
209
Self->ForceTraversals.clear();
209
210
@@ -240,7 +241,7 @@ struct TStatisticsAggregator::TTxInit : public TTxBase {
240
241
SA_LOG_D("[" << Self->TabletID() << "] Loaded ForceTraversals: "
241
242
<< "table count# " << Self->ForceTraversals.size());
242
243
}
243
-
244
+ */
244
245
return true ;
245
246
}
246
247
You can’t perform that action at this time.
0 commit comments