]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Implement SQL VALUES in core.
authorGord Thompson <gord@gordthompson.com>
Fri, 20 Dec 2019 00:58:52 +0000 (19:58 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 24 Mar 2020 18:05:19 +0000 (14:05 -0400)
commit8e3a05ab987dcb783385e555aa607248df1469ca
tree8b34847dcfd0e63cf56ed5e530254da19cb875ef
parente6b6ec78e6d6f96537eaf542f469a7e88134e9fc
Implement SQL VALUES in core.

Added a core :class:`Values` object that enables a VALUES construct
to be used in the FROM clause of an SQL statement for databases that
support it (mainly PostgreSQL and SQL Server).

Fixes: #4868
Closes: #5030
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/5030
Pull-request-sha: 84684038a8efa93b460318e0db53f6c644554588

Change-Id: Ib8109b63bc1a9dc04ab987c5322ca3375f7e824d
doc/build/changelog/unreleased_14/4868.rst [new file with mode: 0644]
lib/sqlalchemy/__init__.py
lib/sqlalchemy/sql/__init__.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/expression.py
lib/sqlalchemy/sql/selectable.py
test/sql/test_compare.py
test/sql/test_values.py [new file with mode: 0644]