]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Use tuple for function package names
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 19 Mar 2021 18:52:59 +0000 (14:52 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 19 Mar 2021 18:52:59 +0000 (14:52 -0400)
commit028e5e90331ff3d12ad3f241e63ccef56a8fa017
treea0b2de23808b59ed258c863c87ff504bdc6296b4
parentad4ce4de3f617ae41fd15556d6e749689a501a94
Use tuple for function package names

Fixed issue where using a ``func`` that includes dotted packagenames would
fail to be cacheable by the SQL caching system due to a Python list of
names that needed to be a tuple.

Fixes: #6101
Change-Id: I1d4bb5bf230b83596c59b6a04aa498f18ecd9613
doc/build/changelog/unreleased_14/6101.rst [new file with mode: 0644]
lib/sqlalchemy/sql/functions.py
test/sql/test_compare.py