Skip to content

Commit

Permalink
Fix an error in our documentation for the CASE syntax (#119)
Browse files Browse the repository at this point in the history
`END CASE` is not recognized by Hyper.
  • Loading branch information
haubenmi authored Aug 20, 2024
1 parent 80c932f commit e883b14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/sql/scalar_func/conditional.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ CASE
WHEN <condition> THEN <result>
[WHEN ...]
[ELSE <result>]
END CASE
END
CASE <expression>
WHEN <value> THEN <result>
[WHEN ...]
[ELSE <result>]
END CASE
END
```

In the first variant, each `condition` is an expression that returns
Expand Down

0 comments on commit e883b14

Please sign in to comment.