Skip to content

Commit 7e1b853

Browse files
authored
feat: keep source table name as destination table name (#8108) (#8109)
1 parent 1877da5 commit 7e1b853

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/plugins/starrocks/tasks/tasks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ func ExportData(c plugin.SubTaskContext) errors.Error {
110110
SrcDb: db,
111111
DestDb: starrocksDb,
112112
SrcTableName: table,
113-
DestTableName: strings.TrimLeft(table, "_"),
113+
DestTableName: table,
114114
}
115115
columnMap, orderBy, skip, err := createTmpTableInStarrocks(&dc)
116116
if skip {

0 commit comments

Comments
 (0)