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

chenjinbao1989 pushed a commit to branch cbdb-postgres-merge
in repository https://gitbox.apache.org/repos/asf/cloudberry.git


The following commit(s) were added to refs/heads/cbdb-postgres-merge by this 
push:
     new 3db2a1039e7 Fix compile errors for index
3db2a1039e7 is described below

commit 3db2a1039e7225e4097259e607823ede3bf02e83
Author: Jinbao Chen <[email protected]>
AuthorDate: Tue Sep 30 20:50:40 2025 +0800

    Fix compile errors for index
---
 src/backend/access/index/indexam.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/backend/access/index/indexam.c 
b/src/backend/access/index/indexam.c
index 8802e26ad90..4f1294bb4cc 100644
--- a/src/backend/access/index/indexam.c
+++ b/src/backend/access/index/indexam.c
@@ -160,7 +160,7 @@ try_index_open(Oid relationId, LOCKMODE lockmode)
 {
        Relation        r;
 
-       r = try_relation_open(relationId, lockmode);
+       r = try_relation_open(relationId, lockmode, false);
 
        /* leave if index does not exist */
        if (!r)


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

Reply via email to