File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -325,27 +325,27 @@ void TKqpCountersBase::ReportQueryWithFullScan() {
325
325
}
326
326
327
327
void TKqpCountersBase::ReportQueryAffectedShards (ui64 shardsCount) {
328
- QueryAffectedShardsCount->Collect (shardsCount > Max< i64 >() ? Max< i64 >() : static_cast < i64 >(shardsCount) );
328
+ QueryAffectedShardsCount->Collect (shardsCount);
329
329
}
330
330
331
331
void TKqpCountersBase::ReportQueryReadSets (ui64 readSetsCount) {
332
- QueryReadSetsCount->Collect (readSetsCount > Max< i64 >() ? Max< i64 >() : static_cast < i64 >(readSetsCount) );
332
+ QueryReadSetsCount->Collect (readSetsCount);
333
333
}
334
334
335
335
void TKqpCountersBase::ReportQueryReadBytes (ui64 bytesCount) {
336
- QueryReadBytes->Collect (bytesCount > Max< i64 >() ? Max< i64 >() : static_cast < i64 >(bytesCount) );
336
+ QueryReadBytes->Collect (bytesCount);
337
337
}
338
338
339
339
void TKqpCountersBase::ReportQueryReadRows (ui64 rowsCount) {
340
- QueryReadRows->Collect (rowsCount > Max< i64 >() ? Max< i64 >() : static_cast < i64 >(rowsCount) );
340
+ QueryReadRows->Collect (rowsCount);
341
341
}
342
342
343
343
void TKqpCountersBase::ReportQueryMaxShardReplySize (ui64 replySize) {
344
- QueryMaxShardReplySize->Collect (replySize > Max< i64 >() ? Max< i64 >() : static_cast < i64 >(replySize) );
344
+ QueryMaxShardReplySize->Collect (replySize);
345
345
}
346
346
347
347
void TKqpCountersBase::ReportQueryMaxShardProgramSize (ui64 programSize) {
348
- QueryMaxShardProgramSize->Collect (programSize > Max< i64 >() ? Max< i64 >() : static_cast < i64 >(programSize) );
348
+ QueryMaxShardProgramSize->Collect (programSize);
349
349
}
350
350
351
351
void TKqpCountersBase::ReportResponseStatus (ui64 responseSize, Ydb::StatusIds::StatusCode ydbStatus) {
You can’t perform that action at this time.
0 commit comments