From 4db33e96d1b5b4ba1a739e15b28835495f78eee4 Mon Sep 17 00:00:00 2001
From: Adam Johnson <me@adamj.eu>
Date: Sun, 12 Mar 2023 14:02:34 +0000
Subject: [PATCH] Corrected example in CreateCollation() docs.

---
 docs/ref/contrib/postgres/operations.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/docs/ref/contrib/postgres/operations.txt b/docs/ref/contrib/postgres/operations.txt
index 8928e4e0e28..1c4cd562d19 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,
             ),
             ...,
         ]