Closed
Description
The problem with schema is that FB wraps numeric values into strings.
The schema says it is null
or numeric
but in the record it is "1234"
.
Steps to Reproduce
Run SAT on the latest FB connector
UPDATE: use this comment for instructions #4827 (comment)
Possible fix
- update schemas - set type =
['null', 'string']
, this is less desirable solution because destination will loose any type info. - do transform while reading inside streams, according to schema type. i.e. 'numeric' -> int, float