Skip to content

Commit e883b14

Browse files
authored
Fix an error in our documentation for the CASE syntax (#119)
`END CASE` is not recognized by Hyper.
1 parent 80c932f commit e883b14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

website/docs/sql/scalar_func/conditional.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ CASE
1414
WHEN <condition> THEN <result>
1515
[WHEN ...]
1616
[ELSE <result>]
17-
END CASE
17+
END
1818
1919
CASE <expression>
2020
WHEN <value> THEN <result>
2121
[WHEN ...]
2222
[ELSE <result>]
23-
END CASE
23+
END
2424
```
2525

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

0 commit comments

Comments
 (0)