More work on truncation algorithm.
[idzebra-moved-to-github.git] / include / rsm_or.h
1 /*
2  * Copyright (C) 1994-1996, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: rsm_or.h,v $
7  * Revision 1.2  1996-12-23 15:29:54  adam
8  * More work on truncation algorithm.
9  *
10  * Revision 1.1  1996/12/20 11:06:45  adam
11  * Implemented multi-or result set.
12  *
13  *
14  */
15
16 #ifndef RSET_M_OR_H
17 #define RSET_M_OR_H
18
19 #include <rset.h>
20
21 extern const rset_control *rset_kind_m_or;
22
23 typedef struct rset_m_or_parms
24 {
25     int     key_size;
26     int     (*cmp)(const void *p1, const void *p2);
27
28     ISAMC   isc;
29     ISAM_P  *isam_positions;
30
31     int     no_isam_positions;
32     int     no_save_positions;
33 } rset_m_or_parms;
34
35 #endif