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
i'm trying to avoid converting []byte types into string for bulk inserts w/ low-cardinality cols but the API doesn't seem to allow that since []byte is not comparable
as a workaround, I can use ColString and then coerce the []byte vals into string with the unfortunate side-effect of additional allocations. ideally this would not be needed and the API would support low-cardinality w/ []byte natively.
The text was updated successfully, but these errors were encountered:
i'm trying to avoid converting
[]byte
types intostring
for bulk inserts w/ low-cardinality cols but the API doesn't seem to allow that since[]byte
is notcomparable
as a workaround, I can use ColString and then coerce the
[]byte
vals intostring
with the unfortunate side-effect of additional allocations. ideally this would not be needed and the API would support low-cardinality w/[]byte
natively.The text was updated successfully, but these errors were encountered: