From 4e89c79a52f8a898edd648b56a00f0f4f840cfe7 Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Thu, 30 Jan 2020 13:32:04 -0300 Subject: Remove excess parens in ereport() calls Cosmetic cleanup, not worth backpatching. Discussion: https://postgr.es/m/20200129200401.GA6303@alvherre.pgsql Reviewed-by: Tom Lane, Michael Paquier --- src/backend/commands/createas.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/backend/commands/createas.c') diff --git a/src/backend/commands/createas.c b/src/backend/commands/createas.c index 9f387b5f5f1..cc02cf824ed 100644 --- a/src/backend/commands/createas.c +++ b/src/backend/commands/createas.c @@ -537,7 +537,7 @@ intorel_startup(DestReceiver *self, int operation, TupleDesc typeinfo) if (check_enable_rls(intoRelationAddr.objectId, InvalidOid, false) == RLS_ENABLED) ereport(ERROR, (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), - (errmsg("policies not yet implemented for this command")))); + errmsg("policies not yet implemented for this command"))); /* * Tentatively mark the target as populated, if it's a matview and we're -- cgit v1.2.3