diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2013-02-21 09:28:42 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2013-02-21 09:28:42 -0500 |
commit | 54a278683531edac535e6aa4d5427799409823f1 (patch) | |
tree | c5ca070c91f1b751c3362646f9be7ee84698c721 /src | |
parent | 699d70b2ec2cb6dc07f6c5b2876609301ddd20a8 (diff) | |
download | postgresql-54a278683531edac535e6aa4d5427799409823f1.tar.gz postgresql-54a278683531edac535e6aa4d5427799409823f1.zip |
Need to decorate XactIsoLevel as PGDLLIMPORT for postgres_fdw.
Per buildfarm.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/access/xact.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/xact.h b/src/include/access/xact.h index 8cadc549716..09e6a6842c2 100644 --- a/src/include/access/xact.h +++ b/src/include/access/xact.h @@ -28,7 +28,7 @@ #define XACT_SERIALIZABLE 3 extern int DefaultXactIsoLevel; -extern int XactIsoLevel; +extern PGDLLIMPORT int XactIsoLevel; /* * We implement three isolation levels internally. |