#include "Core/Column/Select.h"
#include "Core/Column/FilterUnique.h"
#include "Core/Table/Filter.h"
#include "Core/Table/SelectOneColumn.h"
Include dependency graph for Select.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Namespaces | |
namespace | Impala |
namespace | Impala::Core |
namespace | Impala::Core::Table |
Functions | |
template<class T1, class T2> | |
void | Impala::Core::Table::Select (T1 *dst, T2 *src, bool *filter, bool doClearDst) |
Select elements from src based on filter and copy them to dst. | |
template<class T> | |
void | Impala::Core::Table::Select (T *dst, T *src, int from, int to, bool doClearDst) |
Select a part of the table by giving a range of indices. | |
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. | |
template<class T, class Criterion> | |
T * | Impala::Core::Table::Select (T *src, Criterion &c) |
Select all rows from table satisfying c. | |
template<class T1, class T2> | |
void | Impala::Core::Table::SelectUniqueOnCol (T1 *dst, T2 *src, int col, bool doClearDst) |
Select elements from src based on unique elements in given col and copy them to dst. |