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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
_get_column_info() missing 1 required positional argument: 'comment' in SQLAlchemy 1.2.0 #138
Comments
Reference commit: https://bitbucket.org/zzzeek/sqlalchemy/commits/fadb8d61babb |
Would it be crazy to add tests against sqlalchemy master branch to avoid getting caught up on short notice like this in the future? |
I don't know that it would particularly help, since tests only get run when we new commits get sent to PRs. Months can go by without any activity here. |
This looks potentially messy if we want to maintain compatibility with SQLA pre-1.2.0 since the new @graingert - Do you have thoughts about whether we could make SQAlchemy 1.2.0 the minimum required version for the next release? |
I think we can cron travis jobs nowadays. |
For review: #139 |
* Fix incompatibility of reflection with SQA 1.2.0 Addresses #138
sqlalchemy-redshift/sqlalchemy_redshift/dialect.py
Line 607 in 92852b7
This breaks, because this was added:
http://docs.sqlalchemy.org/en/latest/changelog/changelog_12.html#change-3f38508932257c303017b1276f285c39
When it's called from
get_columns()
:sqlalchemy-redshift/sqlalchemy_redshift/dialect.py
Lines 406 to 409 in 92852b7
Because
comment
is missing from there.The text was updated successfully, but these errors were encountered: