Skip to content

Commit

Permalink
Error message fix for CH validate (#2124)
Browse files Browse the repository at this point in the history
Need to know in which destination table the source column is missing
  • Loading branch information
Amogh-Bharadwaj authored Oct 3, 2024
1 parent bb45115 commit 79cd46e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/connectors/clickhouse/clickhouse.go
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ func (c *ClickHouseConnector) processTableComparison(dstTableName string, srcSch
}
}
if !found {
return fmt.Errorf("field %s not found in destination table", srcField.Name)
return fmt.Errorf("field %s not found in destination table %s", srcField.Name, dstTableName)
}
}
foundPeerDBColumns := 0
Expand Down

0 comments on commit 79cd46e

Please sign in to comment.