Example #1
0
File: nbtsort.c Project: huor/gpdb
/*
 * spool an index entry into the sort file.
 */
void
_bt_spool(IndexTuple itup, BTSpool *btspool)
{
	if(gp_enable_mk_sort)
		tuplesort_putindextuple_mk((Tuplesortstate_mk *) btspool->sortstate, itup);
	else
		tuplesort_putindextuple((Tuplesortstate *) btspool->sortstate, itup);
}
Example #2
0
/*
 * spool an index entry into the sort file.
 */
void
_h_spool(IndexTuple itup, HSpool *hspool)
{
    tuplesort_putindextuple(hspool->sortstate, itup);
}
Example #3
0
/*
 * spool an index entry into the sort file.
 */
void
_bt_spool(IndexTuple itup, BTSpool *btspool)
{
	tuplesort_putindextuple(btspool->sortstate, itup);
}