Fix bug introduced by pgrminclude where the tablespace version name was

not expanded.

Bump catalog version number to force initdb for all tablespaces.
This commit is contained in:
Bruce Momjian 2011-09-07 12:41:16 -04:00
parent 029dfdf115
commit f81fb4f690
2 changed files with 6 additions and 1 deletions

View File

@ -14,6 +14,11 @@
#ifndef CATALOG_H
#define CATALOG_H
/*
* 'pgrminclude ignore' needed here because CppAsString2() does not throw
* an error if the symbol is not defined.
*/
#include "catalog/catversion.h" /* pgrminclude ignore */
#include "catalog/pg_class.h"
#include "storage/relfilenode.h"
#include "utils/relcache.h"

View File

@ -53,6 +53,6 @@
*/
/* yyyymmddN */
#define CATALOG_VERSION_NO 201108051
#define CATALOG_VERSION_NO 201109071
#endif