Skip to content

Commit f49b11c

Browse files
authored
fix: Add missing LargeString case (#11192)
#### Summary This was missing from the MySQL destination <!--
1 parent b62a266 commit f49b11c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

plugins/destination/mysql/client/transformer.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ func getValue(arr arrow.Array, i int) (any, error) {
3737
return a.Value(i), nil
3838
case *array.String:
3939
return a.Value(i), nil
40+
case *array.LargeString:
41+
return a.Value(i), nil
4042
case *array.Binary:
4143
return a.Value(i), nil
4244
case *array.LargeBinary:

0 commit comments

Comments
 (0)