From 9b809d158e7285e8c43ca4fc888aa984556d3a10 Mon Sep 17 00:00:00 2001 From: Swen Kooij Date: Tue, 4 Apr 2023 09:16:57 +0300 Subject: [PATCH] Don't point Postgres documentation links to a specific version --- psqlextra/expressions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/psqlextra/expressions.py b/psqlextra/expressions.py index 1840283c..75351e68 100644 --- a/psqlextra/expressions.py +++ b/psqlextra/expressions.py @@ -212,7 +212,7 @@ class ExcludedCol(expressions.Expression): """References a column in PostgreSQL's special EXCLUDED column, which is used in upserts to refer to the data about to be inserted/updated. - See: https://www.postgresql.org/docs/9.5/sql-insert.html#SQL-ON-CONFLICT + See: https://www.postgresql.org/docs/current/sql-insert.html#SQL-ON-CONFLICT """ def __init__(self, name: str):