Skip to content

Commit

Permalink
feat: keep source table name as destination table name (#8108) (#8109)
Browse files Browse the repository at this point in the history
  • Loading branch information
usharerose committed Sep 27, 2024
1 parent 1877da5 commit 7e1b853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/plugins/starrocks/tasks/tasks.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 7e1b853

Please sign in to comment.