summaryrefslogtreecommitdiffstats
path: root/yt
diff options
context:
space:
mode:
authordgolear <[email protected]>2026-05-30 13:19:10 +0300
committerdgolear <[email protected]>2026-05-30 13:52:45 +0300
commit1468e6945304297062957504f6321f0f42d0f882 (patch)
treed466488cabb96239e0ca36d57492ca45de0f1b30 /yt
parent230f2a6d4705cfec902a5393a7e8df346f15bd00 (diff)
Style fixes
commit_hash:1240e177c6da4b295d97c02d4aa5de159af71fdd
Diffstat (limited to 'yt')
-rw-r--r--yt/yt/client/table_client/schema_serialization_helpers.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/yt/yt/client/table_client/schema_serialization_helpers.cpp b/yt/yt/client/table_client/schema_serialization_helpers.cpp
index 65e3a812920..180c7792de4 100644
--- a/yt/yt/client/table_client/schema_serialization_helpers.cpp
+++ b/yt/yt/client/table_client/schema_serialization_helpers.cpp
@@ -309,9 +309,9 @@ void Deserialize(TTableSchema& schema, TColumnNameToConstraintMap& columnNameToC
EnsureYsonToken("table schema", *cursor, EYsonItemType::BeginList);
- auto constraintedColumns = ExtractTo<std::vector<TConstrainedColumnSchema>>(cursor);
+ auto constrainedColumns = ExtractTo<std::vector<TConstrainedColumnSchema>>(cursor);
std::vector<TColumnSchema> columns;
- for (auto& constrainedColumn : constraintedColumns) {
+ for (auto& constrainedColumn : constrainedColumns) {
if (constrainedColumn.Constraint()) {
auto [it, emplaced] = columnNameToConstraint.emplace(constrainedColumn.Name(), *constrainedColumn.Constraint());
if (!emplaced) {