From a914fae9dbb43cfeadf63145fc392fff67cc3662 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 7 Nov 2007 21:56:23 +0000 Subject: - ._execute_clauseelement becomes a public method Connectable.execute_clauseelement --- lib/sqlalchemy/sql/expression.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sqlalchemy/sql') diff --git a/lib/sqlalchemy/sql/expression.py b/lib/sqlalchemy/sql/expression.py index fea8e8155..75c809004 100644 --- a/lib/sqlalchemy/sql/expression.py +++ b/lib/sqlalchemy/sql/expression.py @@ -970,7 +970,7 @@ class ClauseElement(object): e = self.bind if e is None: raise exceptions.InvalidRequestError("This Compiled object is not bound to any Engine or Connection.") - return e._execute_clauseelement(self, multiparams, params) + return e.execute_clauseelement(self, multiparams, params) def scalar(self, *multiparams, **params): """Compile and execute this ``ClauseElement``, returning the result's scalar representation.""" -- cgit v1.2.1