summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2021-08-29 22:17:13 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2021-08-30 11:35:10 -0400
commit916bd20b6d1e7c153d334c31cf0882f502e3815e (patch)
tree3bc26b4780cebe27b122b6b1a3901c6ea4bc402d /doc
parent9131a5208f28ea3c2991c2b05873a495c1a9c851 (diff)
downloadsqlalchemy-916bd20b6d1e7c153d334c31cf0882f502e3815e.tar.gz
ensure pysqlite dialect enumerates correct isolation levels
Fixed bug where the error message for SQLite invalid isolation level on the pysqlite driver would fail to indicate that "AUTOCOMMIT" is one of the valid isolation levels. Change-Id: Icbceab9a28af6a560859761fa92320b5473269a9 References: #6959
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/unreleased_14/sqlite_autocommit.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/build/changelog/unreleased_14/sqlite_autocommit.rst b/doc/build/changelog/unreleased_14/sqlite_autocommit.rst
new file mode 100644
index 000000000..183e0eeed
--- /dev/null
+++ b/doc/build/changelog/unreleased_14/sqlite_autocommit.rst
@@ -0,0 +1,6 @@
+.. change::
+ :tags: bug, sqlite
+
+ Fixed bug where the error message for SQLite invalid isolation level on the
+ pysqlite driver would fail to indicate that "AUTOCOMMIT" is one of the
+ valid isolation levels.