summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/sqlite/base.py
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2023-04-12 23:41:19 +0000
committerGerrit Code Review <gerrit@bbpush.zzzcomputing.com>2023-04-12 23:41:19 +0000
commitb066c45dc491716a4e34bdeb9a9726bcbc136fb5 (patch)
treeae40a051b41f73d3587cb1f2785c85e810e89dc7 /lib/sqlalchemy/dialects/sqlite/base.py
parent53be3fc70a44d34fda1ffddcf9d67473d3de50b4 (diff)
parentee7e49964fcf13ed0f5a3541b81f00302a9db29a (diff)
downloadsqlalchemy-b066c45dc491716a4e34bdeb9a9726bcbc136fb5.tar.gz
Merge "Remove old versionadded and versionchanged" into main
Diffstat (limited to 'lib/sqlalchemy/dialects/sqlite/base.py')
-rw-r--r--lib/sqlalchemy/dialects/sqlite/base.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/sqlalchemy/dialects/sqlite/base.py b/lib/sqlalchemy/dialects/sqlite/base.py
index 20065d88e..6200cee5a 100644
--- a/lib/sqlalchemy/dialects/sqlite/base.py
+++ b/lib/sqlalchemy/dialects/sqlite/base.py
@@ -699,10 +699,6 @@ lookup is used instead:
``REAL``, ``FLOA`` or ``DOUB``.
* Otherwise, the :class:`_types.NUMERIC` type is used.
-.. versionadded:: 0.9.3 Support for SQLite type affinity rules when reflecting
- columns.
-
-
.. _sqlite_partial_index:
Partial Indexes
@@ -720,8 +716,6 @@ The index will be rendered at create time as::
CREATE INDEX test_idx1 ON testtbl (data)
WHERE data > 5 AND data < 10
-.. versionadded:: 0.9.9
-
.. _sqlite_dotted_column_names:
Dotted Column Names
@@ -733,12 +727,6 @@ databases in general, as the dot is a syntactically significant character,
the SQLite driver up until version **3.10.0** of SQLite has a bug which
requires that SQLAlchemy filter out these dots in result sets.
-.. versionchanged:: 1.1
-
- The following SQLite issue has been resolved as of version 3.10.0
- of SQLite. SQLAlchemy as of **1.1** automatically disables its internal
- workarounds based on detection of this version.
-
The bug, entirely outside of SQLAlchemy, can be illustrated thusly::
import sqlite3
@@ -955,8 +943,6 @@ class _DateTimeMixin:
the type will generate its DDL as DATE_CHAR, DATETIME_CHAR,
TIME_CHAR.
- .. versionadded:: 1.0.0
-
"""
spec = self._storage_format % {
"year": 0,