mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-11 03:37:43 +08:00
24 lines
574 B
C
24 lines
574 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* rel2.h--
|
|
*
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: rel2.h,v 1.5 1998/01/24 22:50:55 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 */
|