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 bc7ef5a175251462191ac1c4eb02ee94edc3b955 Author: Brent Doil <[email protected]> AuthorDate: Tue Jan 30 19:35:46 2024 -0500 pg_dumpall: Fix syntax error when dumping RGs --- 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 074505a2852..73a898fb220 100644 --- a/src/bin/pg_dump/pg_dumpall.c +++ b/src/bin/pg_dump/pg_dumpall.c @@ -932,7 +932,7 @@ dumpResGroups(PGconn *conn) else { printfPQExpBuffer(buf, "CREATE RESOURCE GROUP %s WITH (" - "concurrency=%s, cpu_set=%s);\n", + "concurrency=%s, cpuset=%s);\n", fmtId(groupname), concurrency, cpuset); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
