This is an automated email from the ASF dual-hosted git repository. reshke pushed a commit to branch cbdb-postgres-merge in repository https://gitbox.apache.org/repos/asf/cloudberry.git
commit 93407789d5b052c091a202e5cc14402dfdfa6a08 Author: reshke <[email protected]> AuthorDate: Mon Dec 29 09:35:06 2025 +0000 Fix issues with statext_ndistinct_load. --- src/backend/gpopt/gpdbwrappers.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/backend/gpopt/gpdbwrappers.cpp b/src/backend/gpopt/gpdbwrappers.cpp index 81bbf954cbd..947cd3f985a 100644 --- a/src/backend/gpopt/gpdbwrappers.cpp +++ b/src/backend/gpopt/gpdbwrappers.cpp @@ -1960,7 +1960,8 @@ gpdb::GetMVNDistinct(Oid stat_oid) { GP_WRAP_START; { - return statext_ndistinct_load(stat_oid); + /* CBDB_16_MERGE: xxx: do we need ihn = true in any case? */ + return statext_ndistinct_load(stat_oid, false); } GP_WRAP_END; } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
