From 86e8e7c558b296018613ed979012b2aca493ffbb Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 13 Dec 2010 00:15:32 -0500 Subject: - why type.dialect_impl(dialect).bind_processor(dialect), caching just the impl? just call type._cached_bind_processor(dialect), cache the impl *and* the processor function. same for result sets. - use plain dict + update for defaultexecutioncontext.execution_options --- lib/sqlalchemy/sql/expression.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'lib/sqlalchemy/sql/expression.py') diff --git a/lib/sqlalchemy/sql/expression.py b/lib/sqlalchemy/sql/expression.py index bf055f0b2..f090d14d6 100644 --- a/lib/sqlalchemy/sql/expression.py +++ b/lib/sqlalchemy/sql/expression.py @@ -2470,9 +2470,6 @@ class _BindParamClause(ColumnElement): self.key = _generated_label('%%(%d %s)s' % (id(self), self._orig_key or 'param')) - def bind_processor(self, dialect): - return self.type.dialect_impl(dialect).bind_processor(dialect) - def compare(self, other, **kw): """Compare this :class:`_BindParamClause` to the given clause.""" -- cgit v1.2.1