diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2022-01-14 22:00:11 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2022-01-14 22:00:11 +0000 |
commit | 07cd49daaadd0a0568444eaeccaa79f79cd15ffc (patch) | |
tree | ec6220fb8755c7b8f5be721c9099ab69cba5d82d /lib/sqlalchemy/sql/functions.py | |
parent | b4fe2b83ab3ce8cee1e2f4353dfcbea515b4f8d1 (diff) | |
parent | 43f6ae639ca0186f4802255861acdc20f19e702f (diff) | |
download | sqlalchemy-07cd49daaadd0a0568444eaeccaa79f79cd15ffc.tar.gz |
Merge "initial reorganize for static typing" into main
Diffstat (limited to 'lib/sqlalchemy/sql/functions.py')
-rw-r--r-- | lib/sqlalchemy/sql/functions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/functions.py b/lib/sqlalchemy/sql/functions.py index 3b6da7175..7a1e80889 100644 --- a/lib/sqlalchemy/sql/functions.py +++ b/lib/sqlalchemy/sql/functions.py @@ -567,7 +567,7 @@ class FunctionElement(Executable, ColumnElement, FromClause, Generative): s = select(function_element) """ - s = Select._create(self) + s = Select(self) if self._execution_options: s = s.execution_options(**self._execution_options) return s |