diff options
author | Bruce Momjian | 2009-05-08 03:21:35 +0000 |
---|---|---|
committer | Bruce Momjian | 2009-05-08 03:21:35 +0000 |
commit | 853f503f465943728e7eb8cd3461ddc492981166 (patch) | |
tree | 3bd0126ab034f711406cf1c34ac3229daaa849a4 | |
parent | da129ba009b894f14cc917028408e4fdef972219 (diff) |
'PGDLLIMPORT' ShmemVariableCache, needed for pg_migrator.so function
linkage on Win32.
Tested by Hiroshi Saito
-rw-r--r-- | src/include/access/transam.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/transam.h b/src/include/access/transam.h index 2b796b699e..702e0332f8 100644 --- a/src/include/access/transam.h +++ b/src/include/access/transam.h @@ -130,7 +130,7 @@ typedef VariableCacheData *VariableCache; */ /* in transam/varsup.c */ -extern VariableCache ShmemVariableCache; +extern PGDLLIMPORT VariableCache ShmemVariableCache; /* |