We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6066ffa commit 8faaecbCopy full SHA for 8faaecb
yt/yql/providers/yt/provider/yql_yt_load_table_meta.cpp
@@ -139,7 +139,9 @@ class TYtLoadTableMetadataTransformer : public TGraphTransformerBase {
139
}
140
141
auto config = loadEpoch ? State_->Configuration->GetSettingsVer(settingsVer) : State_->Configuration->Snapshot();
142
- opts.Config(config).ReadOnly(State_->Types->IsReadOnly).Epoch(loadEpoch);
+ opts.Config(config)
143
+ .ReadOnly(State_->Types->IsReadOnly || State_->Types->EngineType == EEngineType::Ytflow)
144
+ .Epoch(loadEpoch);
145
146
auto future = State_->Gateway->GetTableInfo(std::move(opts));
147
auto loadCtx = LoadCtx;
0 commit comments