summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/dml.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/dml.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/dml.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/dml.py b/lib/sqlalchemy/dialects/postgresql/dml.py
index a1807d7b3..e17b87d1e 100644
--- a/lib/sqlalchemy/dialects/postgresql/dml.py
+++ b/lib/sqlalchemy/dialects/postgresql/dml.py
@@ -51,8 +51,6 @@ class Insert(StandardInsert):
The :class:`_postgresql.Insert` object is created using the
:func:`sqlalchemy.dialects.postgresql.insert` function.
- .. versionadded:: 1.1
-
"""
stringify_dialect = "postgresql"
@@ -148,8 +146,6 @@ class Insert(StandardInsert):
not meeting the ``WHERE`` condition will not be updated
(effectively a ``DO NOTHING`` for those rows).
- .. versionadded:: 1.1
-
.. seealso::
@@ -188,8 +184,6 @@ class Insert(StandardInsert):
Additional WHERE criterion that can be used to infer a
conditional target index.
- .. versionadded:: 1.1
-
.. seealso::
:ref:`postgresql_insert_on_conflict`