From 7562a9bd7100702ce7878a17f4aaac1df08a8e09 Mon Sep 17 00:00:00 2001 From: Jeff Davis Date: Tue, 30 Apr 2024 17:08:49 -0700 Subject: Fix locale options checking in CREATE DATABASE. Discussion: https://postgr.es/m/4ea13583-7305-40b0-8525-58381533e2b1@eisentraut.org Reported-by: Peter Eisentraut --- src/backend/commands/dbcommands.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/backend/commands/dbcommands.c') diff --git a/src/backend/commands/dbcommands.c b/src/backend/commands/dbcommands.c index cd06d1270c5..be629ea92cf 100644 --- a/src/backend/commands/dbcommands.c +++ b/src/backend/commands/dbcommands.c @@ -1073,7 +1073,8 @@ createdb(ParseState *pstate, const CreatedbStmt *stmt) (errcode(ERRCODE_INVALID_OBJECT_DEFINITION), errmsg("BUILTIN_LOCALE cannot be specified unless locale provider is builtin"))); } - else if (dblocprovider != COLLPROVIDER_ICU) + + if (dblocprovider != COLLPROVIDER_ICU) { if (diculocale) ereport(ERROR, -- cgit v1.2.3