This is an automated email from the ASF dual-hosted git repository.
abeizn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/main by this push:
new 7e1b853ff feat: keep source table name as destination table name
(#8108) (#8109)
7e1b853ff is described below
commit 7e1b853ff7b630020f80d951fafd194eb531163e
Author: Chaojie Yan <[email protected]>
AuthorDate: Fri Sep 27 09:22:00 2024 +0800
feat: keep source table name as destination table name (#8108) (#8109)
---
backend/plugins/starrocks/tasks/tasks.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/backend/plugins/starrocks/tasks/tasks.go
b/backend/plugins/starrocks/tasks/tasks.go
index 2604f62e0..cc33db282 100644
--- a/backend/plugins/starrocks/tasks/tasks.go
+++ b/backend/plugins/starrocks/tasks/tasks.go
@@ -110,7 +110,7 @@ func ExportData(c plugin.SubTaskContext) errors.Error {
SrcDb: db,
DestDb: starrocksDb,
SrcTableName: table,
- DestTableName: strings.TrimLeft(table, "_"),
+ DestTableName: table,
}
columnMap, orderBy, skip, err := createTmpTableInStarrocks(&dc)
if skip {