diff options
author | uzhas <uzhas@ydb.tech> | 2023-10-12 19:46:07 +0300 |
---|---|---|
committer | uzhas <uzhas@ydb.tech> | 2023-10-12 20:03:53 +0300 |
commit | 5a5d809f923d4d66e5e2d91bdf3b329ca2e1b682 (patch) | |
tree | ffb40f3a8aba33769abcf9cadb4fca83f9f577e2 | |
parent | a133fc1e8d404578f74f39162e63f4a5fd8d4c5a (diff) | |
download | ydb-5a5d809f923d4d66e5e2d91bdf3b329ca2e1b682.tar.gz |
fix coverity issue: Big parameter passed by value
-rw-r--r-- | ydb/core/tx/columnshard/engines/changes/abstract/abstract.h | 2 |
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) { |