1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-10 17:42:29 +03:00
This commit is contained in:
Marc G. Fournier
1996-10-21 05:45:21 +00:00
parent 0452227989
commit ede7e6b045
8 changed files with 83 additions and 8 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.3 1996/10/20 08:31:52 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.4 1996/10/21 05:45:21 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -45,6 +45,20 @@
#include "access/relscan.h"
#include "access/hash.h"
#include "utils/palloc.h"
#ifndef HAVE_MEMMOVE
# include "regex/utils.h"
#else
# include <string.h>
#endif
#include "fmgr.h"
#include "utils/memutils.h"
#include "access/iqual.h"
ScanKey
_hash_mkscankey(Relation rel, IndexTuple itup, HashMetaPage metap)
{