diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-11-21 21:16:06 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-11-21 21:16:06 +0000 |
commit | a70e74b060ab2769523ad831f571cb80122121d3 (patch) | |
tree | 95e04cfd344db47857c4aecc3308092d5df01f3d /src/include/access/gist.h | |
parent | 040bb787bcf840e5a1fc49fccff185a8274bccae (diff) | |
download | postgresql-a70e74b060ab2769523ad831f571cb80122121d3.tar.gz postgresql-a70e74b060ab2769523ad831f571cb80122121d3.zip |
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 1297b02ff01..c033d4c3d08 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); |