summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2023-03-12 14:02:34 +0000
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-03-12 15:03:07 +0100
commita0f46ea7e8673c442dbb6ed87fceaf9dd4c0b871 (patch)
treeb59a73d2c736e2f989408ee73ac7efd4ac8de13d /docs
parent2e57dc490ba582017ce548c7fd90e69b1f63a9df (diff)
[4.2.x] Corrected example in CreateCollation() docs.
Backport of 4db33e96d1b5b4ba1a739e15b28835495f78eee4 from main
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/postgres/operations.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/ref/contrib/postgres/operations.txt b/docs/ref/contrib/postgres/operations.txt
index 8928e4e0e2..1c4cd562d1 100644
--- a/docs/ref/contrib/postgres/operations.txt
+++ b/docs/ref/contrib/postgres/operations.txt
@@ -128,9 +128,10 @@ For example, to create a collation for German phone book ordering::
operations = [
CreateCollation(
- "german_phonebook",
+ "case_insensitive",
provider="icu",
locale="und-u-ks-level2",
+ deterministic=False,
),
...,
]