Переглянути джерело

Corrected example in CreateCollation() docs.

Adam Johnson 2 роки тому
батько
коміт
4db33e96d1
1 змінених файлів з 2 додано та 1 видалено
  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,
             ),
             ...,
         ]