diff options
author | Peter Eisentraut | 2000-11-21 21:16:06 +0000 |
---|---|---|
committer | Peter Eisentraut | 2000-11-21 21:16:06 +0000 |
commit | 065f7876bafd4ff14663cdfce2473fffe93fe356 (patch) | |
tree | 4d529ae775eca77c3bf1ec3c255b8345d0f14757 /src/include/access/gist.h | |
parent | 5cf0fedf3dd416e5b5769b1530ba2451319ee71f (diff) |
Put external declarations into header files.
Diffstat (limited to 'src/include/access/gist.h')
-rw-r--r-- | src/include/access/gist.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/access/gist.h b/src/include/access/gist.h index 1297b02ff0..c033d4c3d0 100644 --- a/src/include/access/gist.h +++ b/src/include/access/gist.h @@ -15,6 +15,7 @@ #include "access/itup.h" #include "access/relscan.h" #include "access/sdir.h" +#include "access/xlog.h" /* ** You can have as many strategies as you please in GiSTs, as @@ -191,6 +192,10 @@ extern void gistdentryinit(GISTSTATE *giststate, GISTENTRY *e, char *pr, Relation r, Page pg, OffsetNumber o, int b, bool l); extern StrategyNumber RelationGetGISTStrategy(Relation, AttrNumber, RegProcedure); +extern void gist_redo(XLogRecPtr lsn, XLogRecord *record); +extern void gist_undo(XLogRecPtr lsn, XLogRecord *record); +extern void gist_desc(char *buf, uint8 xl_info, char* rec); + /* gistget.c */ extern Datum gistgettuple(PG_FUNCTION_ARGS); |