This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.0 by this push:
new 2e5b11e1222 branch-4.0: [fix](nereids) fix copy into fail when enable
debug log #56698 (#56713)
2e5b11e1222 is described below
commit 2e5b11e122243bcd99c975796afaa21c8d60b35e
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Oct 11 13:35:38 2025 +0800
branch-4.0: [fix](nereids) fix copy into fail when enable debug log #56698
(#56713)
Cherry-picked from #56698
Co-authored-by: hui lai <[email protected]>
---
.../doris/nereids/trees/plans/commands/info/CopyIntoInfo.java | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/info/CopyIntoInfo.java
b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/info/CopyIntoInfo.java
index 829bbb08a9b..a97149569b6 100644
---
a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/info/CopyIntoInfo.java
+++
b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/info/CopyIntoInfo.java
@@ -214,8 +214,10 @@ public class CopyIntoInfo {
copyIntoProperties.getFileTypeIgnoreCompression());
if (LOG.isDebugEnabled()) {
LOG.debug("copy into params. sql: {}, fileColumns: {},
columnMappingList: {}, filter: {}",
- copyFromDesc.getFileColumns().toString(),
copyFromDesc.getColumnMappingList().toString(),
- copyFromDesc.getFileFilterExpr().toString());
+ originStmt,
+ String.valueOf(copyFromDesc.getFileColumns()),
+ String.valueOf(copyFromDesc.getColumnMappingList()),
+ String.valueOf(copyFromDesc.getFileFilterExpr()));
}
List<String> nameParts = Lists.newArrayList();
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]