File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -357,7 +357,7 @@ class TKiSourceLoadTableMetadataTransformer : public TGraphTransformerBase {
357
357
&& res.Metadata ->Kind == EKikimrTableKind::View
358
358
) {
359
359
const auto & viewMetadata = *res.Metadata ;
360
- auto * viewInfo = preparingQuery->MutablePhysicalQuery ()->MutableViewsInfo ()->Add ();
360
+ auto * viewInfo = preparingQuery->MutablePhysicalQuery ()->MutableViewInfos ()->Add ();
361
361
auto * pathId = viewInfo->MutableTableId ();
362
362
pathId->SetOwnerId (viewMetadata.PathId .OwnerId ());
363
363
pathId->SetTableId (viewMetadata.PathId .TableId ());
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ std::unique_ptr<TEvTxProxySchemeCache::TEvNavigateKeySet> TKqpQueryState::BuildN
88
88
for (const auto & tx : PreparedQuery->GetPhysicalQuery ().GetTransactions ()) {
89
89
FillTables (tx);
90
90
}
91
- FillViews (PreparedQuery->GetPhysicalQuery ().GetViewsInfo ());
91
+ FillViews (PreparedQuery->GetPhysicalQuery ().GetViewInfos ());
92
92
93
93
auto navigate = MakeHolder<NSchemeCache::TSchemeCacheNavigate>();
94
94
navigate->DatabaseName = Database;
Original file line number Diff line number Diff line change @@ -508,5 +508,5 @@ message TKqpPhyQuery {
508
508
509
509
string QueryDiagnostics = 10 ;
510
510
511
- repeated TKqpTableInfo ViewsInfo = 11 ;
511
+ repeated TKqpTableInfo ViewInfos = 11 ;
512
512
}
You can’t perform that action at this time.
0 commit comments