Skip to content

Commit

Permalink
PR requests
Browse files Browse the repository at this point in the history
  • Loading branch information
pdet committed Sep 3, 2024
1 parent bbc75dd commit 5fa49e7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion proto/substrait/algebra.proto
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,6 @@ message NestedLoopJoinRel {
message DuplicateEliminatedGetRel {
RelCommon common = 1;
ReferenceRel input = 2;
repeated Expression.FieldReference column_ids = 3;
}

message DuplicateEliminatedJoinRel {
Expand Down
12 changes: 6 additions & 6 deletions site/docs/relations/physical_relations.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ The Duplicate Eliminated Join is essentially a [Regular Join Operator](logical_r

The duplicate eliminated join has two outputs. The first output is no different than a regular join output. The second output is the output to the duplicate eliminated get operator. This output contains only the columns listed in the `duplicate_eliminated_columns` property. This output must be emitted as soon as the build phase is complete. This is because this output is required to compute the probe input.

| Signature | Value |
| -------------------- |----------------------------------------------------------------------------------------------|
| Inputs | 2 |
| Outputs | 1 |
| Property Maintenance | It is the same as the [Hash Equijoin Operator](physical_relations.md#hash-equijoin-operator) |
| Direct Output Order | Same as the [Join](logical_relations.md#join-operator) operator. |
| Signature | Value |
| -------------------- |-------------------------------------------------------------------------------------------------------------------|
| Inputs | 2 |
| Outputs | 2 One output is from the deduplicated columns in the Duplicate Eliminated Get, and the second is the join output. |
| Property Maintenance | It is the same as the [Hash Equijoin Operator](physical_relations.md#hash-equijoin-operator) |
| Direct Output Order | Same as the [Join](logical_relations.md#join-operator) operator. |

### Duplicate Eliminated Join Properties

Expand Down

0 comments on commit 5fa49e7

Please sign in to comment.