1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-08 11:42:09 +03:00

Fix missing argument and function prototypes.

Not sure how I missed these in previous commit.
This commit is contained in:
Heikki Linnakangas
2013-11-06 11:20:52 +02:00
parent ecaa4708e5
commit 0ea53256a8
2 changed files with 11 additions and 5 deletions

View File

@ -143,7 +143,8 @@ buildFreshLeafTuple(GinState *ginstate,
/*
* Initialize a new posting tree with the TIDs.
*/
postingRoot = createPostingTree(ginstate->index, items, nitem);
postingRoot = createPostingTree(ginstate->index, items, nitem,
buildStats);
/* And save the root link in the result tuple */
GinSetPostingTree(res, postingRoot);