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 f00baa4 commit 85bb210Copy full SHA for 85bb210
ydb/library/yql/providers/yt/provider/yql_yt_datasink_type_ann.cpp
@@ -965,6 +965,10 @@ class TYtDataSinkTypeAnnotationTransformer : public TVisitorTransformerBase {
965
if (auto setting = NYql::GetSetting(GetOutputOp(out.Cast()).Output().Item(FromString<ui32>(out.Cast().OutIndex().Value())).Settings().Ref(), EYtSettingType::ColumnGroups)) {
966
inputColGroupSpec = setting->Tail().Content();
967
}
968
+ } else if (auto outTable = path.Table().Maybe<TYtOutTable>()) {
969
+ if (auto setting = NYql::GetSetting(outTable.Cast().Settings().Ref(), EYtSettingType::ColumnGroups)) {
970
+ inputColGroupSpec = setting->Tail().Content();
971
+ }
972
973
974
if (outGroup != inputColGroupSpec) {
0 commit comments