mirror of
https://github.com/postgres/postgres.git
synced 2026-02-16 00:57:52 -05:00
23 lines
569 B
C
23 lines
569 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* rel2.h--
|
|
*
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: rel2.h,v 1.7 1998/09/01 04:39:31 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef TMP_REL2_H
|
|
#define TMP_REL2_H
|
|
|
|
#include <utils/rel.h>
|
|
|
|
extern IndexStrategy RelationGetIndexStrategy(Relation relation);
|
|
|
|
extern void RelationSetIndexSupport(Relation relation, IndexStrategy strategy,
|
|
RegProcedure *support);
|
|
|
|
#endif /* TMP_REL2_H */
|