mirror of
https://github.com/postgres/postgres.git
synced 2025-07-12 21:01:52 +03:00
Fix inconsistencies and typos in the tree, take 9
This addresses more issues with code comments, variable names and unreferenced variables. Author: Alexander Lakhin Discussion: https://postgr.es/m/7ab243e0-116d-3e44-d120-76b3df7abefd@gmail.com
This commit is contained in:
@ -54,7 +54,7 @@ typedef struct GinState
|
||||
bool oneCol; /* true if single-column index */
|
||||
|
||||
/*
|
||||
* origTupDesc is the nominal tuple descriptor of the index, ie, the i'th
|
||||
* origTupdesc is the nominal tuple descriptor of the index, ie, the i'th
|
||||
* attribute shows the key type (not the input data type!) of the i'th
|
||||
* index column. In a single-column index this describes the actual leaf
|
||||
* index tuples. In a multi-column index, the actual leaf tuples contain
|
||||
@ -443,7 +443,7 @@ extern void ginInsertCleanup(GinState *ginstate, bool full_clean,
|
||||
|
||||
/* ginpostinglist.c */
|
||||
|
||||
extern GinPostingList *ginCompressPostingList(const ItemPointer ptrs, int nptrs,
|
||||
extern GinPostingList *ginCompressPostingList(const ItemPointer ipd, int nipd,
|
||||
int maxsize, int *nwritten);
|
||||
extern int ginPostingListDecodeAllSegmentsToTbm(GinPostingList *ptr, int totalsize, TIDBitmap *tbm);
|
||||
|
||||
|
Reference in New Issue
Block a user