sqlmodel icon indicating copy to clipboard operation
sqlmodel copied to clipboard

`sqlalchemy.Column` parameters are not passed forward when set on `sqlmodel.Field` and a column is provided via `sa_column`

Open JLHasson opened this issue 3 years ago • 3 comments

First Check

  • [X] I added a very descriptive title to this issue.
  • [X] I used the GitHub search to find a similar issue and didn't find it.
  • [X] I searched the SQLModel documentation, with the integrated search.
  • [X] I already searched in Google "How to X in SQLModel" and didn't find any information.
  • [X] I already read and followed all the tutorial in the docs and didn't find an answer.
  • [X] I already checked if it is not related to SQLModel but to Pydantic.
  • [X] I already checked if it is not related to SQLModel but to SQLAlchemy.

Commit to Help

  • [X] I commit to help with one of those options 👆

Example Code

name: str = Field(
    sa_column=Column(
        String,
        # ... other attrs not exposed in sqlmodel.Field today
    ),
    index=True  # this is ignored, must be set on `Column` above
)

Description

sqlmodel.Field exposes some but not all fields from sqlalchemy.Column. This means in some cases it is necessary to provide a Column via the sa_column= param on sqlmodel.Field. However, when this is the case the parameters set on sqlmodel.Field are not forwarded to the new sa_column object.

I think the expected behavior here is that parameters set on Field would be combined with those from the sa_column object. Either this or setting a parameter that will be ignored should trigger a warning/exception along the lines of "You have set index but also provided a sqlalchemy.Column object, index will be ignored".

Operating System

Linux

Operating System Details

No response

SQLModel Version

0.0.6

Python Version

3.9.5

Additional Context

No response

JLHasson avatar Apr 26 '22 18:04 JLHasson

@JLHasson I agree that this functionality doesn't really work as expected. I've seen a few other issues where people have run into similar issues, but I'm not sure there is a perfect solution to fix the problem.

Maybe like you suggest a warning should be added, the docs could definitely use some improvement, as I don't think the "sa_column" parameter is even documented at the moment.

For more complex projects I'd probably suggest people stick with vanilla SQLAlchemy.

oldfielj-ansto avatar Apr 26 '22 22:04 oldfielj-ansto

same issue, i hope they will fix it :(

adpmhel24 avatar May 02 '22 13:05 adpmhel24

same issue, i hope they will fix it , hope sa_column will be more descriptions in the documentation,thanks

jinll2021 avatar Jun 23 '22 03:06 jinll2021

I spent quite some time, figuring out why indexes were not being set. Can we add this in the documentation atleast? It will be helpful for people who need to use custom datatypes like BIGINT and also need a index for that column

ronalddas avatar Oct 11 '22 10:10 ronalddas

Yep, when you pass a Column you are overriding all the SQLAlchemy part, and those fields end up only used by Pydantic.

I still have to document that, but that's the intention.

tiangolo avatar Nov 11 '22 15:11 tiangolo

Assuming the original need was handled, this will be automatically closed now. But feel free to add more comments or create new issues or PRs.

github-actions[bot] avatar Nov 22 '22 00:11 github-actions[bot]