diff options
author | Robin Thomas <robin.thomas@livestream.com> | 2016-04-14 11:50:00 -0400 |
---|---|---|
committer | Robin Thomas <robin.thomas@livestream.com> | 2016-04-14 11:50:00 -0400 |
commit | d5dee6e2cb2908b02fc4e660e1ca2023b5cfd269 (patch) | |
tree | 09b12582093942b0122fa4734770bfafb7529c4f | |
parent | 3a7e94c4d5091bebb5d67246b9888d97ea85e691 (diff) | |
download | sqlalchemy-d5dee6e2cb2908b02fc4e660e1ca2023b5cfd269.tar.gz |
rst tweak
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index 4ef6a3087..a0e281276 100644 --- a/lib/sqlalchemy/dialects/postgresql/base.py +++ b/lib/sqlalchemy/dialects/postgresql/base.py @@ -250,7 +250,7 @@ use the :meth:`._UpdateBase.returning` method on a per-statement basis:: .. _postgresql_insert_on_conflict: INSERT...ON CONFLICT (Upsert) -------------------------- +------------------------------ Starting with version 9.5, PostgreSQL allows "upserts" (update or insert) of rows into a table via the ``INSERT`` statement's ``ON CONFLICT`` clause. |