Browse Source

Corrected example in CreateCollation() docs.

Adam Johnson 2 years ago
parent
commit
4db33e96d1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      docs/ref/contrib/postgres/operations.txt

+ 2 - 1
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,
             ),
             ...,
         ]