]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Add support for SQL string aggregation function :class:`.string_agg`
authorJoshua Morris <joshuajohnmorris@gmail.com>
Sun, 4 Jun 2023 07:07:20 +0000 (17:07 +1000)
committerJoshua Morris <joshua.morris@deswik.com>
Mon, 10 Jul 2023 22:48:07 +0000 (08:48 +1000)
commit7bc1fe54a9f89057d3b7ba689020cd0f237dd3ee
treec0b00de30e743d851340ed44514957264695e55b
parent03f168cf19bd037905b1c8dc282235a064b368bd
Add support for SQL string aggregation function :class:`.string_agg`

Returns a :class:`.String` with support for PostgreSQL, SQLite, and MSSQL. fixes #9873
lib/sqlalchemy/dialects/sqlite/base.py
lib/sqlalchemy/sql/functions.py
test/sql/test_compare.py
test/sql/test_functions.py