diff options
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r-- | src/backend/access/gist/gist.c | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index 640c189886..560f28743f 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -6,7 +6,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.62 2000/07/14 22:17:28 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.63 2000/10/21 15:43:09 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -23,6 +23,12 @@ #include "miscadmin.h" #include "utils/syscache.h" +#ifdef XLOG +#include "access/xlogutils.h" +void gist_redo(XLogRecPtr lsn, XLogRecord *record); +void gist_undo(XLogRecPtr lsn, XLogRecord *record); +void gist_desc(char *buf, uint8 xl_info, char* rec); +#endif /* non-export function prototypes */ static InsertIndexResult gistdoinsert(Relation r, IndexTuple itup, @@ -1344,3 +1350,22 @@ int_range_out(INTRANGE *r) } #endif /* defined GISTDEBUG */ + +#ifdef XLOG +void +gist_redo(XLogRecPtr lsn, XLogRecord *record) +{ + elog(STOP, "gist_redo: unimplemented"); +} + +void +gist_undo(XLogRecPtr lsn, XLogRecord *record) +{ + elog(STOP, "gist_undo: unimplemented"); +} + +void +gist_desc(char *buf, uint8 xl_info, char* rec) +{ +} +#endif |