From: Mike Bayer Date: Wed, 9 Oct 2013 00:06:58 +0000 (-0400) Subject: A :func:`.select` that is made to refer to itself in its FROM clause, X-Git-Tag: rel_0_9_0b1~53 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e74627f827542044c1d2087be95e41d4b1b46f24;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git A :func:`.select` that is made to refer to itself in its FROM clause, typically via in-place mutation, will raise an informative error message rather than causing a recursion overflow. [ticket:2815] --- diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index 87dbc8f93a..6731fe19a8 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -10,6 +10,15 @@ .. changelog:: :version: 0.8.3 + .. change:: + :tags: bug, sql + :tickets: 2815 + :versions: 0.9.0 + + A :func:`.select` that is made to refer to itself in its FROM clause, + typically via in-place mutation, will raise an informative error + message rather than causing a recursion overflow. + .. change:: :tags: bug, orm :tickets: 2813 diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py index e06262c6de..43d5a084cd 100644 --- a/lib/sqlalchemy/sql/selectable.py +++ b/lib/sqlalchemy/sql/selectable.py @@ -1936,6 +1936,9 @@ class Select(HasPrefixes, SelectBase): def add(items): for item in items: + if item is self: + raise exc.InvalidRequestError( + "select() construct refers to itself as a FROM") if translate and item in translate: item = translate[item] if not seen.intersection(item._cloned_set): diff --git a/test/sql/test_selectable.py b/test/sql/test_selectable.py index 87a2267825..0fc7a0ed0d 100644 --- a/test/sql/test_selectable.py +++ b/test/sql/test_selectable.py @@ -514,6 +514,18 @@ class SelectableTest(fixtures.TestBase, AssertsExecutionResults, AssertsCompiled "SELECT c FROM (SELECT (SELECT (SELECT table1.col1 AS a FROM table1) AS b) AS c)" ) + def test_self_referential_select_raises(self): + t = table('t', column('x')) + + s = select([t]) + + s.append_whereclause(s.c.x > 5) + assert_raises_message( + exc.InvalidRequestError, + r"select\(\) construct refers to itself as a FROM", + s.compile + ) + def test_unusual_column_elements_text(self): """test that .c excludes text()."""