From 79428172cfd0607a3ff01a30e28e349da99f2819 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Villemain?= Date: Wed, 26 Mar 2025 17:06:11 +0100 Subject: [PATCH] Fix typo noted by @eaydingol in a C comment --- src/backend/distributed/metadata/metadata_utility.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/distributed/metadata/metadata_utility.c b/src/backend/distributed/metadata/metadata_utility.c index fede8f752..5bedfd61e 100644 --- a/src/backend/distributed/metadata/metadata_utility.c +++ b/src/backend/distributed/metadata/metadata_utility.c @@ -2431,7 +2431,7 @@ UpdateNoneDistTableMetadata(Oid relationId, char replicationModel, uint32 coloca * Check that the current user has `mode` permissions on relationId. * If not, also check relationId's attributes with `mask`, error out * privileges are not defined. - * ACL mask is used because we assume that user has enought privilege + * ACL mask is used because we assume that user has enough privilege * to distribute a table when either ACL_INSERT on the TABLE or * ACL_INSERT on ALL attributes. * In other situations, having a single attribute privilege is enough.