summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2022-06-03 12:13:10 +0200
committerMike Bayer <mike_mp@zzzcomputing.com>2022-06-04 12:02:49 -0400
commit526e9bb6ae025d3b8032d6efc1deb1a0f4a3dae3 (patch)
treec0ccb7d6ca955af37ed618e890cf31157e0f3839 /doc
parentad86d32f7fbd1c6deda8ff3bebe0595c0f2986cc (diff)
downloadsqlalchemy-526e9bb6ae025d3b8032d6efc1deb1a0f4a3dae3.tar.gz
Fixed orm not applying fetch
Fixed an issue where :meth:`_sql.GenerativeSelect.fetch` would be ignored when executing a statement using the ORM. Fixes: #8091 Change-Id: I6790c7272a71278e90de2529c8bc8ae89e54e288
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/unreleased_14/8091.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/build/changelog/unreleased_14/8091.rst b/doc/build/changelog/unreleased_14/8091.rst
new file mode 100644
index 000000000..014f66a56
--- /dev/null
+++ b/doc/build/changelog/unreleased_14/8091.rst
@@ -0,0 +1,6 @@
+.. change::
+ :tags: bug, orm, sql
+ :tickets: 8091
+
+ Fixed an issue where :meth:`_sql.GenerativeSelect.fetch` would not
+ be applied when executing a statement using the ORM.