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.
2 parents 76b89e1 + 32e0608 commit d0f1a28Copy full SHA for d0f1a28
ydb/library/yql/dq/actors/input_transforms/dq_input_transform_lookup.cpp
@@ -111,7 +111,7 @@ class TInputTransformStreamLookupBase
111
outputRowItems[i] = wideInputRow[index];
112
break;
113
case EOutputRowItemSource::LookupKey:
114
- outputRowItems[i] = lookupKey.GetElement(index);
+ outputRowItems[i] = lookupPayload && *lookupPayload ? lookupKey.GetElement(index) : NUdf::TUnboxedValue {};
115
116
case EOutputRowItemSource::LookupOther:
117
if (lookupPayload && *lookupPayload) {
0 commit comments