Skip to content

Commit dca5d3d

Browse files
committed
Docs
1 parent 4b89c48 commit dca5d3d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Significant changes:
88

99
- The library now requires Java 17
1010
- Deprecated code from prior releases is removed
11+
- Allow CASE expressions in ORDER BY Clauses
1112

1213
## Release 1.5.2 - June 3, 2024
1314

src/site/markdown/docs/caseExpressions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
Support for case expressions was added in version 1.5.1. For information about case expressions in the Kotlin DSL, see
44
the [Kotlin Case Expressions](kotlinCaseExpressions.md) page.
55

6-
## Case Statements in SQL
6+
## Case Expressions in SQL
77
The library supports different types of case expressions - a "simple" case expression, and a "searched" case
8-
expressions.
8+
expressions. Case expressions can be used in many places including select lists, order by phrases, etc.
99

1010
A simple case expression checks the values of a single column. It looks like this:
1111

src/site/markdown/docs/kotlinCaseExpressions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
Support for case expressions was added in version 1.5.1. For information about case expressions in the Java DSL, see
44
the [Java Case Expressions](caseExpressions.md) page.
55

6-
## Case Statements in SQL
6+
## Case Expressions in SQL
77
The library supports different types of case expressions - a "simple" case expression, and a "searched" case
8-
expressions.
8+
expressions. Case expressions can be used in many places including select lists, order by phrases, etc.
99

1010
A simple case expression checks the values of a single column. It looks like this:
1111

0 commit comments

Comments
 (0)