From: Federico Caselli Date: Thu, 14 May 2020 19:51:59 +0000 (+0200) Subject: Improve error message when using :meth:`_query.Query.filter_by` in X-Git-Tag: rel_1_3_18~25^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12151ac2f0f1b01ad6ee6af8a8d1fe233b1cc86e;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Improve error message when using :meth:`_query.Query.filter_by` in a query where the first entity is not a mapped class. Fixes: #5260 Change-Id: I18cfccc0f3e587cb3df3e1f5f23b6885d5f2f466 (cherry picked from commit 8c10e29dc7aa2356d0f3f5110b2c9dade9d87096) --- diff --git a/doc/build/changelog/unreleased_13/5260.rst b/doc/build/changelog/unreleased_13/5260.rst new file mode 100644 index 0000000000..18e1ddeb01 --- /dev/null +++ b/doc/build/changelog/unreleased_13/5260.rst @@ -0,0 +1,6 @@ +.. change:: + :tags: usecase, orm + :tickets: 5326 + + Improve error message when using :meth:`_query.Query.filter_by` in + a query where the first entity is not a mapped class. diff --git a/lib/sqlalchemy/orm/query.py b/lib/sqlalchemy/orm/query.py index e6da753f89..23c08042b7 100644 --- a/lib/sqlalchemy/orm/query.py +++ b/lib/sqlalchemy/orm/query.py @@ -1890,8 +1890,17 @@ class Query(object): """ + zero = self._joinpoint_zero() + if zero is None: + raise sa_exc.InvalidRequestError( + "Can't use filter_by when the first entity '%s' of a query " + "is not a mapped class. Please use the filter method instead, " + "or change the order of the entities in the query" + % self._query_entity_zero() + ) + clauses = [ - _entity_descriptor(self._joinpoint_zero(), key) == value + _entity_descriptor(zero, key) == value for key, value in kwargs.items() ] return self.filter(*clauses) diff --git a/test/orm/test_query.py b/test/orm/test_query.py index 77a820953c..df1cf27a7a 100644 --- a/test/orm/test_query.py +++ b/test/orm/test_query.py @@ -3197,6 +3197,18 @@ class FilterTest(QueryTest, AssertsCompiledSQL): "AS users_name FROM users WHERE name='ed'", ) + def test_filter_by_non_entity(self): + s = create_session() + e = sa.func.count(123) + assert_raises_message( + sa_exc.InvalidRequestError, + r"Can't use filter_by when the first entity 'count\(:count_1\)' of" + " a query is not a mapped class. Please use the filter method " + "instead, or change the order of the entities in the query", + s.query(e).filter_by, + col=42, + ) + class HasAnyTest(fixtures.DeclarativeMappedTest, AssertsCompiledSQL): __dialect__ = "default"