]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Raise UnmappedInstanceError if the attribute of a database object is an unmapped...
authorRamonWill <ramonwilliams@hotmail.co.uk>
Thu, 13 Aug 2020 21:23:16 +0000 (17:23 -0400)
committersqla-tester <sqla-tester@sqlalchemy.org>
Thu, 13 Aug 2020 21:23:16 +0000 (17:23 -0400)
commitda4302a92de49a3819061ac21663266fc9890cf0
tree79a1c7292a9bec5876d6a5ea2ec1d4ad37532d19
parentcd03b8f0cecbf72ecd6c99c4d3a6338c8278b40d
Raise UnmappedInstanceError if the attribute of a database object is an unmapped object.

The proposed change will raise an UnmappedInstanceError instead of an attribute error if an instance an Instrumented Attribute is unmapped.

### Description
If a user tries to access an attribute of a database object that is unmapped then an error is raised. The reason for this is because the __get__  descriptor  uses instance_state(instance) which uses the operator.attrgetter method to see if the object in question has the attribute "_sa_instance_state" that mapped objects have.  If it doesn't contain this attribute it means that the object is unmapped.

This pull request is:

- [ ] A documentation / typographical error fix
- Good to go, no issue or tests are needed
- [X ] A short code fix
- please include the issue number, and create an issue if none exists, which
  must include a complete example of the issue.  one line code fixes without an
  issue and demonstration will not be accepted.
- Please include: `Fixes: #<issue number>` in the commit message
- please include tests.   one line code fixes without tests will not be accepted.
- [ ] A new feature implementation
- please include the issue number, and create an issue if none exists, which must
  include a complete example of how the feature would look.
- Please include: `Fixes: #<issue number>` in the commit message
- please include tests.

**Have a nice day!**
Fixes: #3858
Closes: #5478
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/5478
Pull-request-sha: 853051c9225446b69f52b13ade78709ad2617f6d

Change-Id: I5989c81227e55e628babdd11406d1e8ec0e8d93a
doc/build/changelog/unreleased_14/3858.rst [new file with mode: 0644]
lib/sqlalchemy/orm/attributes.py
test/orm/test_attributes.py