Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

template<class T1, class T2, class Criterion>
void Impala::Core::Table::Select ( T1 *  dst,
T2 *  src,
Criterion &  c,
bool  doClearDst 
)

Select all rows from src satisfying c and copy them to dst.

Criterion has function bool Check(e1...e9)

Definition at line 83 of file Select.h.

References Filter(), and Select().

00084 {
00085     bool* filter = Filter(src, c);
00086     Select(dst, src, filter, doClearDst);
00087     delete filter;
00088 }

Here is the call graph for this function:


Generated on Fri Mar 19 11:19:27 2010 for ImpalaSrc by  doxygen 1.5.1