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
We are using deferred column:
d_column = column_property( func.pg_func(id), deferred=True)
It gave a naming error -- as SQL Alchemy generated column name on that. Hence we label it:
d_column = column_property( func.pg_func(id).label('test'), deferred=True)
All works fine since that point, but this column doesn't appear in a sort. Questions:
The text was updated successfully, but these errors were encountered:
Might be related to #301
Sorry, something went wrong.
No branches or pull requests
We are using deferred column:
It gave a naming error -- as SQL Alchemy generated column name on that. Hence we label it:
All works fine since that point, but this column doesn't appear in a sort.
Questions:
The text was updated successfully, but these errors were encountered: