Skip to content

Commit

Permalink
Change word
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-artie committed Aug 23, 2024
1 parent c061a8f commit 3b2ef40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/debezium/converters/decimal.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func encodeDecimalWithScale(decimal *apd.Decimal, scale int32) []byte {
if decimal.Exponent != targetExponent {
// TODO: We may be able to remove this conversion and just return an error to maintain parity with `org.apache.kafka.connect.data.Decimal`
// https://github.com/a0x8o/kafka/blob/54eff6af115ee647f60129f2ce6a044cb17215d0/connect/api/src/main/java/org/apache/kafka/connect/data/Decimal.java#L69
slog.Warn("Value scale is different from expected scale",
slog.Warn("Value scale is different from schema scale",
slog.Any("value", decimal.Text('f')),
slog.Any("actual", -decimal.Exponent),
slog.Any("expected", scale),
Expand Down

0 comments on commit 3b2ef40

Please sign in to comment.