Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: correctly produce Kafka JSON nulls for int fields
This fixes what was likely a copy-paste error, where the Kafka JSON producing logic checked for NULL_SHORT for int fields. None of the other field types were mishandled. It's worth noting that the json producer will omit null fields by default, and to explicitly output a JSON null (`{..., "myIntField": null, ...}`), the `boolean outputNulls` must be set to `true` (exposed as `output_nulls` in python). Fixes #5701
- Loading branch information