Skip to content

Commit

Permalink
docs(sql-tutorial): fix minor typo in union section of SQL user tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-park authored and cpcloud committed Dec 19, 2023
1 parent 9ad3f57 commit ca6c2a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorials/ibis-for-sql-users.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -1144,7 +1144,7 @@ SQL dialects often support two kinds of `UNION` operations:
- `UNION ALL`: the combination of all rows from each table, whether or
not they are distinct.

The Ibis `union` function by distinct is a `UNION ALL`, and you can set
The Ibis `union` function by default is a `UNION ALL`, and you can set
`distinct=True` to get the normal `UNION` behavior:

```{python}
Expand Down

0 comments on commit ca6c2a5

Please sign in to comment.