Skip to content

Commit

Permalink
Allow multi join actors to handle undefs, Closes #1231
Browse files Browse the repository at this point in the history
  • Loading branch information
maartyman committed Jul 14, 2023
1 parent b86d552 commit 89d5f3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export class ActorRdfJoinMultiEmpty extends ActorRdfJoin {
super(args, {
logicalType: 'inner',
physicalName: 'multi-empty',
canHandleUndefs: true,
});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export class ActorRdfJoinMultiSequential extends ActorRdfJoin {
physicalName: 'multi-sequential',
limitEntries: 3,
limitEntriesMin: true,
canHandleUndefs: true,
});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export class ActorRdfJoinMultiSmallest extends ActorRdfJoin {
physicalName: 'multi-smallest',
limitEntries: 3,
limitEntriesMin: true,
canHandleUndefs: true,
});
}

Expand Down

0 comments on commit 89d5f3d

Please sign in to comment.