We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CFG.bytes_encoding
This prevents the need to reconfigure on a case-by-case basis.
class Databackend: bytes_encoding = 'bytes' class IbisDatabackend: def __init__(self): if self.uri.startswith('snowflake'): self.bytes_encoding = 'str' ...
TODO: only do conversion between bytes and str if encodable == 'encodable'.
bytes
str
encodable == 'encodable'
The text was updated successfully, but these errors were encountered:
blythed
No branches or pull requests
This prevents the need to reconfigure on a case-by-case basis.
TODO: only do conversion between
bytes
andstr
ifencodable == 'encodable'
.The text was updated successfully, but these errors were encountered: