summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/future/selectable.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/future/selectable.py')
-rw-r--r--lib/sqlalchemy/future/selectable.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/sqlalchemy/future/selectable.py b/lib/sqlalchemy/future/selectable.py
index 74cc13501..407ec9633 100644
--- a/lib/sqlalchemy/future/selectable.py
+++ b/lib/sqlalchemy/future/selectable.py
@@ -71,6 +71,10 @@ class Select(_LegacySelect):
return self.where(*criteria)
+ def _exported_columns_iterator(self):
+ meth = SelectState.get_plugin_class(self).exported_columns_iterator
+ return meth(self)
+
def _filter_by_zero(self):
if self._setup_joins:
meth = SelectState.get_plugin_class(