From 19531968e84557693576928b3184ccc549aa44c8 Mon Sep 17 00:00:00 2001 From: Amit Langote Date: Thu, 3 Oct 2024 19:51:38 +0900 Subject: [PATCH] Replace Unicode apostrophe with ASCII apostrophe In commit babb3993dbe9, I accidentally introduced a Unicode apostrophe (U+2019). This commit replaces it with the ASCII apostrophe (U+0027) for consistency. Reported-by: Alexander Korotkov Discussion: https://postgr.es/m/CAPpHfduNWMBjkJFtqXJremk6b6YQYO2s3_VEpnj-T_CaUNUYYQ@mail.gmail.com --- src/backend/commands/tablecmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index 34f8bc801a..af8c05b91f 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -18691,7 +18691,7 @@ ATExecAttachPartition(List **wqueue, Relation rel, PartitionCmd *cmd, /* * Use list_concat_copy() to avoid modifying partBoundConstraint in place, - * since it’s needed later to construct the constraint expression for + * since it's needed later to construct the constraint expression for * validating against the default partition, if any. */ partConstraint = list_concat_copy(partBoundConstraint, -- 2.39.5