summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/elements.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2021-03-24 12:00:16 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2021-03-24 12:02:33 -0400
commit3fc9f11c23e39e95e4d33572d04e74f74b0f20ed (patch)
tree749cb9125c12068d51dc8eff295476d6262494a1 /lib/sqlalchemy/sql/elements.py
parenta22b4dfbc44c78cb4fce27c33cf74cf57878a3b1 (diff)
downloadsqlalchemy-3fc9f11c23e39e95e4d33572d04e74f74b0f20ed.tar.gz
open up window functions (ha ha) for mysql / mariadb
MySQL 8 and MariaDB 10.2 support window functions so this should be turned on. Change-Id: Ic1fdd328f1f0def7dfc8451385c16ea81902074c
Diffstat (limited to 'lib/sqlalchemy/sql/elements.py')
-rw-r--r--lib/sqlalchemy/sql/elements.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/sqlalchemy/sql/elements.py b/lib/sqlalchemy/sql/elements.py
index b3b041385..20c3e8991 100644
--- a/lib/sqlalchemy/sql/elements.py
+++ b/lib/sqlalchemy/sql/elements.py
@@ -3777,8 +3777,7 @@ class Over(ColumnElement):
This is a special operator against a so-called
"window" function, as well as any aggregate function,
which produces results relative to the result set
- itself. It's supported only by certain database
- backends.
+ itself. Most modern SQL backends now support window functions.
"""