Ejemplo n.º 1
0
Archivo: nbtsort.c Proyecto: 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);
}
Ejemplo n.º 2
0
/*
 * spool an index entry into the sort file.
 */
void
_h_spool(IndexTuple itup, HSpool *hspool)
{
    tuplesort_putindextuple(hspool->sortstate, itup);
}
Ejemplo n.º 3
0
/*
 * spool an index entry into the sort file.
 */
void
_bt_spool(IndexTuple itup, BTSpool *btspool)
{
	tuplesort_putindextuple(btspool->sortstate, itup);
}