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 2a642323b64 Do not set from.inh to false in copy
2a642323b64 is described below
commit 2a642323b64d62ebf9ff4f236f60f1f6c18a948a
Author: Jinbao Chen <[email protected]>
AuthorDate: Fri Dec 26 02:53:11 2025 +0800
Do not set from.inh to false in copy
---
src/backend/commands/copy.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/backend/commands/copy.c b/src/backend/commands/copy.c
index ae5cb324e16..c0b56f0261d 100644
--- a/src/backend/commands/copy.c
+++ b/src/backend/commands/copy.c
@@ -342,7 +342,6 @@ DoCopy(ParseState *pstate, const CopyStmt *stmt,
from =
makeRangeVar(get_namespace_name(RelationGetNamespace(rel)),
pstrdup(RelationGetRelationName(rel)),
-1);
- from->inh = false; /* apply ONLY */
/* Build query */
select = makeNode(SelectStmt);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]