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.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/dml.py b/lib/sqlalchemy/dialects/postgresql/dml.py
index 4e77f5a4c..f4467976a 100644
--- a/lib/sqlalchemy/dialects/postgresql/dml.py
+++ b/lib/sqlalchemy/dialects/postgresql/dml.py
@@ -103,7 +103,6 @@ class Insert(StandardInsert):
self._post_values_clause = OnConflictDoUpdate(
constraint, index_elements, index_where, set_, where
)
- return self
@_generative
def on_conflict_do_nothing(
@@ -138,7 +137,6 @@ class Insert(StandardInsert):
self._post_values_clause = OnConflictDoNothing(
constraint, index_elements, index_where
)
- return self
insert = public_factory(Insert, ".dialects.postgresql.insert")