You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whenever passing in native JSON data, we get an exception:
This occurs because, in the lower level write_native_data method, the v var is a string, which is being appended to a byte array.
I fixed this locally by encoding the v var into utf-8. Do I misunderstand something in the insertion process that I need to correct in the client-level code?
If it helps to debug, the JSON library chosen by clickhouse-connect is ujson.
The text was updated successfully, but these errors were encountered:
Whenever passing in native JSON data, we get an exception:
This occurs because, in the lower level
write_native_data
method, thev
var is a string, which is being appended to a byte array.I fixed this locally by encoding the
v
var intoutf-8
. Do I misunderstand something in the insertion process that I need to correct in the client-level code?If it helps to debug, the JSON library chosen by
clickhouse-connect
isujson
.The text was updated successfully, but these errors were encountered: