diff options
Diffstat (limited to 'src/backend/access/gist/gistbuild.c')
-rw-r--r-- | src/backend/access/gist/gistbuild.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/gist/gistbuild.c b/src/backend/access/gist/gistbuild.c index ba06df30faf..63d1914b37f 100644 --- a/src/backend/access/gist/gistbuild.c +++ b/src/backend/access/gist/gistbuild.c @@ -273,7 +273,7 @@ gistbuild(Relation heap, Relation index, IndexInfo *indexInfo) /* Scan the table, adding all tuples to the tuplesort */ reltuples = table_index_build_scan(heap, index, indexInfo, true, true, gistSortedBuildCallback, - (void *) &buildstate, NULL); + &buildstate, NULL); /* * Perform the sort and build index pages. @@ -312,7 +312,7 @@ gistbuild(Relation heap, Relation index, IndexInfo *indexInfo) /* Scan the table, inserting all the tuples to the index. */ reltuples = table_index_build_scan(heap, index, indexInfo, true, true, gistBuildCallback, - (void *) &buildstate, NULL); + &buildstate, NULL); /* * If buffering was used, flush out all the tuples that are still in |