mirror of
https://github.com/postgres/postgres.git
synced 2026-02-10 22:33:50 -05:00
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files.
22 lines
592 B
C
22 lines
592 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* rtstrat.h
|
|
* routines defined in access/rtree/rtstrat.c
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: rtstrat.h,v 1.12 2000/01/26 05:57:51 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef RTSTRAT_H
|
|
#define RTSTRAT_H
|
|
|
|
#include "utils/rel.h"
|
|
|
|
extern RegProcedure RTMapOperator(Relation r, AttrNumber attnum,
|
|
RegProcedure proc);
|
|
|
|
#endif /* RTSTRAT_H */
|