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-types Signed-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 compiler In 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 commit b35f0c9. Signed-off-by: Jesse Whitehouse <jesse.whitehouse@databricks.com>
Signed-off-by: Jesse Whitehouse <jesse.whitehouse@databricks.com>
susodapop
commented
May 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
commented
May 24, 2023
In this PR, I also want to update |
gdippolito
commented
Jul 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
commented
Sep 20, 2023
Ping @susodapop in case you didn't see my previous comment 😄 Do you have any plans to add support for TINYINT? |
susodapop
commented
Oct 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. |
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.