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 92751de669d44dcfc0e588bc7574527ff6818e7b Author: xuqi.wxq <[email protected]> AuthorDate: Tue Sep 27 14:56:27 2022 +0800 Fix external protocol dump from gp6 using gp7 pg_dump. As in gp6 there is no objtype abbreviation E in 'acldefault' fuction. --- src/bin/pg_dump/pg_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 5087fac372b..32b5de212f1 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -6647,7 +6647,7 @@ getExtProtocols(Archive *fout, int *numExtProtocols) int i_ptcvalidid; /* find all user-defined external protocol */ - if (fout->remoteVersion >= 90200) + if (fout->remoteVersion >= 90600) { appendPQExpBuffer(query, "SELECT tableoid, " "oid, " --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
