diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-09-12 12:57:40 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-09-12 12:58:23 -0400 |
| commit | 70516536107a44230762206342c51239c5d85417 (patch) | |
| tree | 9bc4a52fce9d27ed19fd5ea246072111f1d43e4c /doc | |
| parent | 31f80b9eaeb3c3435b7f6679b41e434478b1d11c (diff) | |
| download | sqlalchemy-ticket_4074.tar.gz | |
use the stack to get the insert statement in on conflictticket_4074
Fixed bug in Postgresql :meth:`.postgresql.dml.Insert.on_conflict_do_update`
which would prevent the insert statement from being used as a CTE,
e.g. via :meth:`.Insert.cte`, within another statement.
Change-Id: Ie20972a05e194290bc9d92819750845872949ecc
Fixes: #4074
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/unreleased_11/4074.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/build/changelog/unreleased_11/4074.rst b/doc/build/changelog/unreleased_11/4074.rst new file mode 100644 index 000000000..f60ab1b5b --- /dev/null +++ b/doc/build/changelog/unreleased_11/4074.rst @@ -0,0 +1,8 @@ +.. change:: + :tags: bug, postgresql + :tickets: 4074 + :versions: 1.2.0b3 + + Fixed bug in Postgresql :meth:`.postgresql.dml.Insert.on_conflict_do_update` + which would prevent the insert statement from being used as a CTE, + e.g. via :meth:`.Insert.cte`, within another statement.
\ No newline at end of file |
