- Notifications
You must be signed in to change notification settings - Fork126
sqlalchemy: support TINYINT type#126
New issue
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
…specific type per this link:https://docs.sqlalchemy.org/en/13/core/type_basics.html#vendor-specific-typesSigned-off-by: Jesse Whitehouse <jesse.whitehouse@databricks.com>
Signed-off-by: Jesse Whitehouse <jesse.whitehouse@databricks.com>
There seems to be two mechanisms where I can hook into the type compilerIn this one, I explicitly set a dialect-specific compilation overwrite.Signed-off-by: Jesse Whitehouse <jesse.whitehouse@databricks.com>
mechanism. This is simpler than the approach in the commit I'm reverting.This partially reverts commitb35f0c9.Signed-off-by: Jesse Whitehouse <jesse.whitehouse@databricks.com>
Signed-off-by: Jesse Whitehouse <jesse.whitehouse@databricks.com>
susodapop commentedMay 16, 2023
For future reference, I identified a couple ways to register this type with SQLAlchemy's type compiler. I committed both on this branch but reverted the more complicated solution and kept the simplest one (using the |
Signed-off-by: Jesse Whitehouse <jesse.whitehouse@databricks.com>
susodapop commentedMay 24, 2023
In this PR, I also want to update |
gdippolito commentedJul 21, 2023
Hello! I think we are facing an issue that would be fixed by this PR. Would it be possible to merge it? |
gdippolito commentedSep 20, 2023
Ping@susodapop in case you didn't see my previous comment 😄 Do you have any plans to add support for TINYINT? |
susodapop commentedOct 28, 2023
Hey@gdippolito I'm dropping this PR in favour of#265 which will merge and be released next week. Thanks for your patience in this regard. We've completely rewritten our dialect and incorporated this addition into that effort. |
Uh oh!
There was an error while loading.Please reload this page.
Description
Adds support for the Databricks
TINYINTtype.To use the
TINYINTusers can:Related Tickets & Documents
Closes#123
Related to#108 since we'll need to implement BINARY in a similar fashion.