diff options
author | Michael Paquier <michael@paquier.xyz> | 2020-11-25 12:18:26 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2020-11-25 12:18:26 +0900 |
commit | 7b94e999606e2e2e10d68d544d49fc5a5d5785ac (patch) | |
tree | 935a8f986797796649c47f4be94d11b3d34d5d9c /src/backend/executor/nodeModifyTable.c | |
parent | 660b89928d18386de7755565c008439ae75d1218 (diff) | |
download | postgresql-7b94e999606e2e2e10d68d544d49fc5a5d5785ac.tar.gz postgresql-7b94e999606e2e2e10d68d544d49fc5a5d5785ac.zip |
Remove catalog function currtid()
currtid() and currtid2() are an undocumented set of functions whose sole
known user is the Postgres ODBC driver, able to retrieve the latest TID
version for a tuple given by the caller of those functions.
As used by Postgres ODBC, currtid() is a shortcut able to retrieve the
last TID loaded into a backend by passing an OID of 0 (magic value)
after a tuple insertion. This is removed in this commit, as it became
obsolete after the driver began using "RETURNING ctid" with inserts, a
clause supported since Postgres 8.2 (using RETURNING is better for
performance anyway as it reduces the number of round-trips to the
backend).
currtid2() is still used by the driver, so this remains around for now.
Note that this function is kept in its original shape for backward
compatibility reasons.
Per discussion with many people, including Andres Freund, Peter
Eisentraut, Álvaro Herrera, Hiroshi Inoue, Tom Lane and myself.
Bump catalog version.
Discussion: https://postgr.es/m/20200603021448.GB89559@paquier.xyz
Diffstat (limited to 'src/backend/executor/nodeModifyTable.c')
-rw-r--r-- | src/backend/executor/nodeModifyTable.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/backend/executor/nodeModifyTable.c b/src/backend/executor/nodeModifyTable.c index 29e07b72287..e0f24283b80 100644 --- a/src/backend/executor/nodeModifyTable.c +++ b/src/backend/executor/nodeModifyTable.c @@ -645,10 +645,7 @@ ExecInsert(ModifyTableState *mtstate, } if (canSetTag) - { (estate->es_processed)++; - setLastTid(&slot->tts_tid); - } /* * If this insert is the result of a partition key update that moved the |