Commit 8141523e authored by Bruce Momjian's avatar Bruce Momjian

Properly define pg_upgrade global variable, per bug report from Chris

Ruprecht on Mac (64 bit).
parent 6bbaa314
...@@ -237,7 +237,7 @@ typedef struct ...@@ -237,7 +237,7 @@ typedef struct
/* /*
* Global variables * Global variables
*/ */
char scandir_file_pattern[MAXPGPATH]; extern char scandir_file_pattern[];
/* check.c */ /* check.c */
......
...@@ -17,6 +17,9 @@ static void transfer_relfile(migratorContext *ctx, pageCnvCtx *pageConverter, ...@@ -17,6 +17,9 @@ static void transfer_relfile(migratorContext *ctx, pageCnvCtx *pageConverter,
const char *oldnspname, const char *oldrelname, const char *oldnspname, const char *oldrelname,
const char *newnspname, const char *newrelname); const char *newnspname, const char *newrelname);
/* used by scandir(), must be global */
char scandir_file_pattern[MAXPGPATH];
/* /*
* transfer_all_new_dbs() * transfer_all_new_dbs()
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment