diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2025-06-08 17:30:00 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2025-06-08 17:30:00 +0900 |
commit | 7d4667c6203d0174903a53de9d1730fbec26576b (patch) | |
tree | 985f2652a7739f6d68b9a5858949c63452258abf /src/include | |
parent | 73e26cbeb5927053eea4e209e5eda34a30c353f1 (diff) | |
download | postgresql-7d4667c6203d0174903a53de9d1730fbec26576b.tar.gz postgresql-7d4667c6203d0174903a53de9d1730fbec26576b.zip |
Revert "postgres_fdw: Inherit the local transaction's access/deferrable modes."
We concluded that commit e5a3c9d9b is a feature rather than a fix; since
it was added after feature freeze, revert it.
Reported-by: Fujii Masao <masao.fujii@oss.nttdata.com>
Reported-by: Michael Paquier <michael@paquier.xyz>
Reported-by: Robert Haas <robertmhaas@gmail.com>
Discussion: https://postgr.es/m/ed2296f1-1a6b-4932-b870-5bb18c2591ae%40oss.nttdata.com
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/access/xact.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/access/xact.h b/src/include/access/xact.h index 7f11b919799..b2bc10ee041 100644 --- a/src/include/access/xact.h +++ b/src/include/access/xact.h @@ -458,7 +458,6 @@ extern TimestampTz GetCurrentTransactionStopTimestamp(void); extern void SetCurrentStatementStartTimestamp(void); extern int GetCurrentTransactionNestLevel(void); extern bool TransactionIdIsCurrentTransactionId(TransactionId xid); -extern int GetTopReadOnlyTransactionNestLevel(void); extern void CommandCounterIncrement(void); extern void ForceSyncCommit(void); extern void StartTransactionCommand(void); |