diff options
| author | Federico Caselli <cfederico87@gmail.com> | 2023-04-12 23:17:38 +0200 |
|---|---|---|
| committer | Federico Caselli <cfederico87@gmail.com> | 2023-04-12 23:17:38 +0200 |
| commit | ee7e49964fcf13ed0f5a3541b81f00302a9db29a (patch) | |
| tree | 71d6b1cbfc8705658e2cfd8de56b817ca28fd67e /lib/sqlalchemy/dialects/mysql | |
| parent | 107ec58bdfbcbb09f40d92590f8197ffa683a925 (diff) | |
| download | sqlalchemy-ee7e49964fcf13ed0f5a3541b81f00302a9db29a.tar.gz | |
Remove old versionadded and versionchanged
Removed versionadded and versionchanged for version prior to 1.2 since they
are no longer useful.
Change-Id: I5c53d1188bc5fec3ab4be39ef761650ed8fa6d3e
Diffstat (limited to 'lib/sqlalchemy/dialects/mysql')
| -rw-r--r-- | lib/sqlalchemy/dialects/mysql/base.py | 7 | ||||
| -rw-r--r-- | lib/sqlalchemy/dialects/mysql/enumerated.py | 2 | ||||
| -rw-r--r-- | lib/sqlalchemy/dialects/mysql/json.py | 2 |
3 files changed, 0 insertions, 11 deletions
diff --git a/lib/sqlalchemy/dialects/mysql/base.py b/lib/sqlalchemy/dialects/mysql/base.py index 387b0141c..b5a5b2ca4 100644 --- a/lib/sqlalchemy/dialects/mysql/base.py +++ b/lib/sqlalchemy/dialects/mysql/base.py @@ -719,8 +719,6 @@ The value passed to the keyword argument will be simply passed through to the underlying CREATE INDEX, so it *must* be a valid index prefix for your MySQL storage engine. -.. versionadded:: 1.1.5 - .. seealso:: `CREATE INDEX <https://dev.mysql.com/doc/refman/5.0/en/create-index.html>`_ - MySQL documentation @@ -1000,11 +998,6 @@ output:: d TIMESTAMP NOT NULL ) -.. versionchanged:: 1.0.0 - SQLAlchemy now renders NULL or NOT NULL in all - cases for TIMESTAMP columns, to accommodate - ``explicit_defaults_for_timestamp``. Prior to this version, it will - not render "NOT NULL" for a TIMESTAMP column that is ``nullable=False``. - """ # noqa from array import array as _array diff --git a/lib/sqlalchemy/dialects/mysql/enumerated.py b/lib/sqlalchemy/dialects/mysql/enumerated.py index 70a2ee002..2e1d3c3da 100644 --- a/lib/sqlalchemy/dialects/mysql/enumerated.py +++ b/lib/sqlalchemy/dialects/mysql/enumerated.py @@ -142,8 +142,6 @@ class SET(_StringType): essential that the list of set values is expressed in the **exact same order** as exists on the MySQL database. - .. versionadded:: 1.0.0 - """ self.retrieve_as_bitwise = kw.pop("retrieve_as_bitwise", False) self.values = tuple(values) diff --git a/lib/sqlalchemy/dialects/mysql/json.py b/lib/sqlalchemy/dialects/mysql/json.py index 7ad9c95ef..66fcb714d 100644 --- a/lib/sqlalchemy/dialects/mysql/json.py +++ b/lib/sqlalchemy/dialects/mysql/json.py @@ -28,8 +28,6 @@ class JSON(sqltypes.JSON): datatype, by adapting the operations to render the ``JSON_EXTRACT`` function at the database level. - .. versionadded:: 1.1 - """ pass |
