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
Is there any reason not to infer bytes literals as binary?
>>> import ibis
>>> ibis.literal(b"abc")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/cloud/src/ibis/ibis/expr/types.py", line 1288, in literal
raise TypeError(
TypeError: The datatype of value b'abc' cannot be inferred, try passing it explicitly with the `type` keyword.
The text was updated successfully, but these errors were encountered:
Is there any reason not to infer
bytesliterals asbinary?The text was updated successfully, but these errors were encountered: