This is an automated email from the ASF dual-hosted git repository. tuhaihe pushed a commit to branch REL_2_STABLE in repository https://gitbox.apache.org/repos/asf/cloudberry.git
commit 61a9a4cd7b1192f1d258d17cbac2506af352f76e 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]
