Skip to content
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

Deferred columns inconsistency #161

Open
jagusiak opened this issue Aug 27, 2018 · 1 comment
Open

Deferred columns inconsistency #161

jagusiak opened this issue Aug 27, 2018 · 1 comment
Labels

Comments

@jagusiak
Copy link

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:

  • Should it appear?
  • If not -- why its name is validated?
@erikwrede erikwrede added the bug label May 15, 2022
@erikwrede
Copy link
Member

Might be related to #301

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants