mirror of
https://github.com/postgres/postgres.git
synced 2025-06-11 20:28:21 +03:00
Need to decorate XactIsoLevel as PGDLLIMPORT for postgres_fdw.
Per buildfarm.
This commit is contained in:
@ -305,7 +305,7 @@ begin_remote_xact(ConnCacheEntry *entry)
|
||||
elog(DEBUG3, "starting remote transaction on connection %p",
|
||||
entry->conn);
|
||||
|
||||
if (XactIsoLevel == XACT_SERIALIZABLE)
|
||||
if (IsolationIsSerializable())
|
||||
sql = "START TRANSACTION ISOLATION LEVEL SERIALIZABLE";
|
||||
else
|
||||
sql = "START TRANSACTION ISOLATION LEVEL REPEATABLE READ";
|
||||
|
Reference in New Issue
Block a user