Skip to content

Commit d0f1a28

Browse files
authored
Merge 32e0608 into 76b89e1
2 parents 76b89e1 + 32e0608 commit d0f1a28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/library/yql/dq/actors/input_transforms/dq_input_transform_lookup.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class TInputTransformStreamLookupBase
111111
outputRowItems[i] = wideInputRow[index];
112112
break;
113113
case EOutputRowItemSource::LookupKey:
114-
outputRowItems[i] = lookupKey.GetElement(index);
114+
outputRowItems[i] = lookupPayload && *lookupPayload ? lookupKey.GetElement(index) : NUdf::TUnboxedValue {};
115115
break;
116116
case EOutputRowItemSource::LookupOther:
117117
if (lookupPayload && *lookupPayload) {

0 commit comments

Comments
 (0)