|
7 | 7 | * |
8 | 8 | * |
9 | 9 | * IDENTIFICATION |
10 | | - * $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.9 1996/11/03 12:34:33 scrappy Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.10 1996/11/05 09:40:17 scrappy Exp $ |
11 | 11 | * |
12 | 12 | * NOTES |
13 | 13 | * This file contains only the public interface routines. |
14 | 14 | * |
15 | 15 | *------------------------------------------------------------------------- |
16 | 16 | */ |
17 | 17 |
|
18 | | -#include"postgres.h" |
| 18 | +#include<postgres.h> |
19 | 19 |
|
20 | | -#include"access/relscan.h" |
21 | | -#include"access/hash.h" |
22 | | - |
23 | | -#include"nodes/execnodes.h" |
24 | | - |
25 | | -#include"executor/executor.h" |
26 | | - |
27 | | -#include"access/heapam.h" |
28 | | - |
29 | | -#include"access/genam.h" |
30 | | - |
31 | | -#include"utils/palloc.h" |
32 | | - |
33 | | -#include"catalog/index.h" |
| 20 | +#include<access/hash.h> |
| 21 | +#include<executor/executor.h> |
| 22 | +#include<access/heapam.h> |
| 23 | +#include<access/genam.h> |
| 24 | +#include<catalog/index.h> |
| 25 | +#include<storage/bufmgr.h> |
| 26 | +#include<miscadmin.h> |
34 | 27 |
|
35 | 28 | #ifndefHAVE_MEMMOVE |
36 | | -# include"regex/utils.h" |
| 29 | +# include<regex/utils.h> |
37 | 30 | #else |
38 | 31 | # include<string.h> |
39 | 32 | #endif |
40 | 33 |
|
41 | | -#include"storage/bufmgr.h" |
42 | | - |
43 | | -#include"miscadmin.h" |
44 | | - |
45 | 34 | boolBuildingHash= false; |
46 | 35 |
|
47 | 36 | /* |
|