fix: failure Loading json columns into an arrow table #2273
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Issue Summary
When loading a table with
json
columns into an Arrow table, the process fails due to nullablejson
payloads. Since the dataset is sparse, the first row in the result set is oftenNone
, leading topy_type
being inferred asNoneType
. As a result, the column is not converted into a JSON string array, causing the following error:Expected bytes, got a 'dict' object
.Steps to Reproduce
json
column into an Arrow table.None
Expected Behavior
json
column should be properly converted to ajson
string array, even if the first value in the dataset is NULL.json
type instead of defaulting toNoneType
.sql_database
workaroundA query adapter can be used to explicitly cast JSON columns to TEXT:
But seeing as I also use this module in my pg_replication source plugin I preferred to correct it at the source, no pun intended 😉