Skip to content

Commit db55049

Browse files
committed
Rename a variable
1 parent e811371 commit db55049

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ydb/core/kqp/provider/yql_kikimr_datasource.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ class TKiSourceLoadTableMetadataTransformer : public TGraphTransformerBase {
357357
&& res.Metadata->Kind == EKikimrTableKind::View
358358
) {
359359
const auto& viewMetadata = *res.Metadata;
360-
auto* viewInfo = preparingQuery->MutablePhysicalQuery()->MutableViewsInfo()->Add();
360+
auto* viewInfo = preparingQuery->MutablePhysicalQuery()->MutableViewInfos()->Add();
361361
auto* pathId = viewInfo->MutableTableId();
362362
pathId->SetOwnerId(viewMetadata.PathId.OwnerId());
363363
pathId->SetTableId(viewMetadata.PathId.TableId());

ydb/core/kqp/session_actor/kqp_query_state.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ std::unique_ptr<TEvTxProxySchemeCache::TEvNavigateKeySet> TKqpQueryState::BuildN
8888
for (const auto& tx : PreparedQuery->GetPhysicalQuery().GetTransactions()) {
8989
FillTables(tx);
9090
}
91-
FillViews(PreparedQuery->GetPhysicalQuery().GetViewsInfo());
91+
FillViews(PreparedQuery->GetPhysicalQuery().GetViewInfos());
9292

9393
auto navigate = MakeHolder<NSchemeCache::TSchemeCacheNavigate>();
9494
navigate->DatabaseName = Database;

ydb/core/protos/kqp_physical.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,5 +508,5 @@ message TKqpPhyQuery {
508508

509509
string QueryDiagnostics = 10;
510510

511-
repeated TKqpTableInfo ViewsInfo = 11;
511+
repeated TKqpTableInfo ViewInfos = 11;
512512
}

0 commit comments

Comments
 (0)