aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoruzhas <uzhas@ydb.tech>2023-10-12 19:46:07 +0300
committeruzhas <uzhas@ydb.tech>2023-10-12 20:03:53 +0300
commit5a5d809f923d4d66e5e2d91bdf3b329ca2e1b682 (patch)
treeffb40f3a8aba33769abcf9cadb4fca83f9f577e2
parenta133fc1e8d404578f74f39162e63f4a5fd8d4c5a (diff)
downloadydb-5a5d809f923d4d66e5e2d91bdf3b329ca2e1b682.tar.gz
fix coverity issue: Big parameter passed by value
-rw-r--r--ydb/core/tx/columnshard/engines/changes/abstract/abstract.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/tx/columnshard/engines/changes/abstract/abstract.h b/ydb/core/tx/columnshard/engines/changes/abstract/abstract.h
index b70292d044..1af7a5f4aa 100644
--- a/ydb/core/tx/columnshard/engines/changes/abstract/abstract.h
+++ b/ydb/core/tx/columnshard/engines/changes/abstract/abstract.h
@@ -129,7 +129,7 @@ public:
const TVersionedIndex& SchemaVersions;
const NColumnShard::TIndexationCounters Counters;
- TConstructionContext(const TVersionedIndex& schemaVersions, const NColumnShard::TIndexationCounters counters)
+ TConstructionContext(const TVersionedIndex& schemaVersions, const NColumnShard::TIndexationCounters& counters)
: SchemaVersions(schemaVersions)
, Counters(counters) {