diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-12-19 16:02:14 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-12-19 16:02:14 -0500 |
| commit | 5f76f29c15b7a23cfe29c5fbd22ad02452b6a2c0 (patch) | |
| tree | 022779ebba8df3b7d75d4c46fa7730f0f2d1fda5 /doc | |
| parent | 47eb5682d1b8885c052e4bc50004af45b5f19174 (diff) | |
| download | sqlalchemy-5f76f29c15b7a23cfe29c5fbd22ad02452b6a2c0.tar.gz | |
- Fixed bug with :meth:`.Insert.from_select` method where the order
of the given names would not be taken into account when generating
the INSERT statement, thus producing a mismatch versus the column
names in the given SELECT statement. Also noted that
:meth:`.Insert.from_select` implies that Python-side insert defaults
cannot be used, since the statement has no VALUES clause. [ticket:2895]
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_08.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index 3460e5c68..751cefdae 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -12,6 +12,18 @@ :version: 0.8.5 .. change:: + :tags: bug, sql + :versions: 0.9.0b2 + :tickets: 2895 + + Fixed bug with :meth:`.Insert.from_select` method where the order + of the given names would not be taken into account when generating + the INSERT statement, thus producing a mismatch versus the column + names in the given SELECT statement. Also noted that + :meth:`.Insert.from_select` implies that Python-side insert defaults + cannot be used, since the statement has no VALUES clause. + + .. change:: :tags: enhancement, sql :versions: 0.9.0b2 |
