This is an automated email from the ASF dual-hosted git repository.

Smyatkin-Maxim pushed a commit to branch pg-dump-rebase-REL-2
in repository https://gitbox.apache.org/repos/asf/cloudberry.git

commit a770c409118fe33c510b955575c26c7ce8c902d4
Author: Brent Doil <[email protected]>
AuthorDate: Thu Sep 29 14:19:54 2022 -0400

    pg_dump: Remove unneeded version check for quote_all_identifiers
    
    Authored-by: Brent Doil <[email protected]>
---
 src/bin/pg_dump/pg_dumpall.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/pg_dump/pg_dumpall.c b/src/bin/pg_dump/pg_dumpall.c
index 43fc2e52a8e..dfb6f3f0c67 100644
--- a/src/bin/pg_dump/pg_dumpall.c
+++ b/src/bin/pg_dump/pg_dumpall.c
@@ -615,7 +615,7 @@ main(int argc, char *argv[])
        }
 
        /* Force quoting of all identifiers if requested. */
-       if (quote_all_identifiers && server_version >= 80300)
+       if (quote_all_identifiers)
                executeCommand(conn, "SET quote_all_identifiers = true");
 
        fprintf(OPF,"--\n-- Apache Cloudberry cluster dump\n--\n\n");


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to