From 4633d891da25d7d9cffe2a8704c4e3960345801b Mon Sep 17 00:00:00 2001 From: Eunbin Son Date: Fri, 3 Jul 2026 17:43:12 +0900 Subject: [PATCH] Docs: Fix non-existent SortOrderBuilder method in evolution.md The replaceSortOrder example called .dec(...) and used NullOrder.NULL_FIRST, neither of which exists in the API (SortOrderBuilder only has desc(...), and NullOrder's constant is NULLS_FIRST). The example does not compile as written. Generated-by: Claude Code --- docs/docs/evolution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/evolution.md b/docs/docs/evolution.md index 437234ec3756..1fad670326f3 100644 --- a/docs/docs/evolution.md +++ b/docs/docs/evolution.md @@ -93,7 +93,7 @@ and `category` column sorted in descending order with nulls first: Table sampleTable = ...; sampleTable.replaceSortOrder() .asc("id", NullOrder.NULLS_LAST) - .dec("category", NullOrder.NULL_FIRST) + .desc("category", NullOrder.NULLS_FIRST) .commit(); ```