mirror of
https://github.com/postgres/postgres.git
synced 2025-08-27 07:42:10 +03:00
Used modified version of indent that understands over 100 typedefs.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.15 1997/09/08 20:53:53 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.16 1997/09/08 21:40:45 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* This file contains only the public interface routines.
|
||||
@@ -48,9 +48,9 @@ hashbuild(Relation heap,
|
||||
AttrNumber *attnum,
|
||||
IndexStrategy istrat,
|
||||
uint16 pcount,
|
||||
Datum * params,
|
||||
FuncIndexInfo * finfo,
|
||||
PredInfo * predInfo)
|
||||
Datum *params,
|
||||
FuncIndexInfo *finfo,
|
||||
PredInfo *predInfo)
|
||||
{
|
||||
HeapScanDesc hscan;
|
||||
Buffer buffer;
|
||||
@@ -278,7 +278,7 @@ hashbuild(Relation heap,
|
||||
* to the caller.
|
||||
*/
|
||||
InsertIndexResult
|
||||
hashinsert(Relation rel, Datum * datum, char *nulls, ItemPointer ht_ctid, Relation heapRel)
|
||||
hashinsert(Relation rel, Datum *datum, char *nulls, ItemPointer ht_ctid, Relation heapRel)
|
||||
{
|
||||
HashItem hitem;
|
||||
IndexTuple itup;
|
||||
|
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashfunc.c,v 1.5 1997/09/08 02:20:13 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashfunc.c,v 1.6 1997/09/08 21:40:47 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* These functions are stored in pg_amproc. For each operator class
|
||||
@@ -23,7 +23,7 @@
|
||||
uint32
|
||||
hashint2(int16 key)
|
||||
{
|
||||
return ((uint32) ~ key);
|
||||
return ((uint32) ~key);
|
||||
}
|
||||
|
||||
uint32
|
||||
@@ -130,7 +130,7 @@ hashfloat8(float64 keyp)
|
||||
uint32
|
||||
hashoid(Oid key)
|
||||
{
|
||||
return ((uint32) ~ key);
|
||||
return ((uint32) ~key);
|
||||
}
|
||||
|
||||
|
||||
@@ -204,7 +204,7 @@ hashchar8(char *key)
|
||||
}
|
||||
|
||||
uint32
|
||||
hashname(NameData * n)
|
||||
hashname(NameData *n)
|
||||
{
|
||||
uint32 h;
|
||||
int len;
|
||||
|
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.10 1997/09/08 02:20:20 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.11 1997/09/08 21:40:48 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* Because we can be doing an index scan on a relation while we
|
||||
@@ -38,7 +38,7 @@ typedef struct HashScanListData
|
||||
{
|
||||
IndexScanDesc hashsl_scan;
|
||||
struct HashScanListData *hashsl_next;
|
||||
} HashScanListData;
|
||||
} HashScanListData;
|
||||
|
||||
typedef HashScanListData *HashScanList;
|
||||
|
||||
|
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.13 1997/09/08 20:54:05 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.14 1997/09/08 21:40:52 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -127,7 +127,7 @@ _hash_next(IndexScanDesc scan, ScanDirection dir)
|
||||
|
||||
static void
|
||||
_hash_readnext(Relation rel,
|
||||
Buffer *bufp, Page * pagep, HashPageOpaque * opaquep)
|
||||
Buffer *bufp, Page *pagep, HashPageOpaque *opaquep)
|
||||
{
|
||||
BlockNumber blkno;
|
||||
|
||||
@@ -146,7 +146,7 @@ _hash_readnext(Relation rel,
|
||||
|
||||
static void
|
||||
_hash_readprev(Relation rel,
|
||||
Buffer *bufp, Page * pagep, HashPageOpaque * opaquep)
|
||||
Buffer *bufp, Page *pagep, HashPageOpaque *opaquep)
|
||||
{
|
||||
BlockNumber blkno;
|
||||
|
||||
|
Reference in New Issue
Block a user