Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
54a27868
Commit
54a27868
authored
Feb 21, 2013
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Need to decorate XactIsoLevel as PGDLLIMPORT for postgres_fdw.
Per buildfarm.
parent
699d70b2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
contrib/postgres_fdw/connection.c
contrib/postgres_fdw/connection.c
+1
-1
src/include/access/xact.h
src/include/access/xact.h
+1
-1
No files found.
contrib/postgres_fdw/connection.c
View file @
54a27868
...
...
@@ -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"
;
...
...
src/include/access/xact.h
View file @
54a27868
...
...
@@ -28,7 +28,7 @@
#define XACT_SERIALIZABLE 3
extern
int
DefaultXactIsoLevel
;
extern
int
XactIsoLevel
;
extern
PGDLLIMPORT
int
XactIsoLevel
;
/*
* We implement three isolation levels internally.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment