Skip to content

Commit

Permalink
Clarify in join doc that fields can be copied from the right side wit…
Browse files Browse the repository at this point in the history
…hout assignment (#5206)
  • Loading branch information
philrz authored Aug 7, 2024
1 parent 343ac63 commit 54a5a15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/language/operators/join.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
<left-input>
| [anti|inner|left|right] join (
<right-input>
) on <left-key>=<right-key> [<field>:=<right-expr>, ...]
) on <left-key>=<right-key> [[<field>:=]<right-expr>, ...]
( => <left-input> => <right-input> )
| [anti|inner|left|right] join on <left-key>=<right-key> [<field>:=<right-expr>, ...]
| [anti|inner|left|right] join on <left-key>=<right-key> [[<field>:=]<right-expr>, ...]
```

:::tip Note
Expand Down

0 comments on commit 54a5a15

Please sign in to comment.