diff options
author | Hiroshi Inoue | 2000-02-18 09:30:20 +0000 |
---|---|---|
committer | Hiroshi Inoue | 2000-02-18 09:30:20 +0000 |
commit | e3a97b370c2671c05ad95d6a21914c225a0cf32d (patch) | |
tree | e20b8bdc9dfedef71dfe1367c3b957cbf16c42c1 /src/include/miscadmin.h | |
parent | e3befe4a66c68fea03300eadb9d9b2f1c2534dc6 (diff) |
Implement reindex command
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index 7e47b3a3603..df3de38611b 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: miscadmin.h,v 1.50 2000/01/26 05:57:46 momjian Exp $ + * $Id: miscadmin.h,v 1.51 2000/02/18 09:29:06 inoue Exp $ * * NOTES * some of the information in this file will be moved to @@ -211,6 +211,9 @@ extern ProcessingMode Mode; #define GetProcessingMode() Mode +extern void IgnoreSystemIndexes(bool mode); +extern bool IsIgnoringSystemIndexes(void); +extern bool IsCacheInitialized(void); /* * "postmaster.pid" is a file containing postmaster's pid, being |