From 1a80181a9c125e9c6a31d26098e44aaf17af9d4d Mon Sep 17 00:00:00 2001 From: Onur Tirtir Date: Mon, 13 Nov 2023 13:42:11 +0300 Subject: [PATCH] indent --- .../distributed/deparser/deparse_database_stmts.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/backend/distributed/deparser/deparse_database_stmts.c b/src/backend/distributed/deparser/deparse_database_stmts.c index 2c1dc0b66..4551ccd1d 100644 --- a/src/backend/distributed/deparser/deparse_database_stmts.c +++ b/src/backend/distributed/deparser/deparse_database_stmts.c @@ -271,14 +271,14 @@ ValidateCreateDatabaseOptions(DefElem *option) if (strcmp(option->defname, "template") == 0 && strcmp(optionValue, "template1") != 0) { ereport(ERROR, errmsg("Only template1 is supported as template " - "parameter for CREATE DATABASE")); + "parameter for CREATE DATABASE")); } - if (strcmp(option->defname, "strategy") == 0 && strcmp(optionValue, "wal_log") != 0) - { - ereport(ERROR, errmsg("Only wal_log is supported as strategy " - "parameter for CREATE DATABASE")); - } + if (strcmp(option->defname, "strategy") == 0 && strcmp(optionValue, "wal_log") != 0) + { + ereport(ERROR, errmsg("Only wal_log is supported as strategy " + "parameter for CREATE DATABASE")); + } }