Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1953196

Browse files
committed
Replace Unicode apostrophe with ASCII apostrophe
In commit babb399, I accidentally introduced a Unicode apostrophe (U+2019). This commit replaces it with the ASCII apostrophe (U+0027) for consistency. Reported-by: Alexander Korotkov <aekorotkov@gmail.com> Discussion: https://postgr.es/m/CAPpHfduNWMBjkJFtqXJremk6b6YQYO2s3_VEpnj-T_CaUNUYYQ@mail.gmail.com
1 parent e55f025 commit 1953196

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/commands/tablecmds.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18691,7 +18691,7 @@ ATExecAttachPartition(List **wqueue, Relation rel, PartitionCmd *cmd,
1869118691

1869218692
/*
1869318693
* Use list_concat_copy() to avoid modifying partBoundConstraint in place,
18694-
* since its needed later to construct the constraint expression for
18694+
* since it's needed later to construct the constraint expression for
1869518695
* validating against the default partition, if any.
1869618696
*/
1869718697
partConstraint = list_concat_copy(partBoundConstraint,

0 commit comments

Comments
 (0)