Impala
Impalaistheopensource,nativeanalyticdatabaseforApacheHadoop.
|
Node in the chained hash table. More...
Public Types | |
enum | { INVALID_INDEX = 40000 } |
Public Member Functions | |
Node (const T &v, const NodeIndex &n) | |
Public Attributes | |
T | value |
The dictionary value. More... | |
NodeIndex | next |
Index into nodes_ for the next Node in the chain. INVALID_INDEX indicates end. More... | |
Node in the chained hash table.
Definition at line 132 of file dict-encoding.h.
anonymous enum |
The maximum number of values in the dictionary. Chosen to be around 60% of HASH_TABLE_SIZE to limit the expected length of the chains.
Enumerator | |
---|---|
INVALID_INDEX |
Definition at line 143 of file dict-encoding.h.
|
inline |
Definition at line 133 of file dict-encoding.h.
NodeIndex impala::DictEncoder< T >::Node::next |
Index into nodes_ for the next Node in the chain. INVALID_INDEX indicates end.
Definition at line 139 of file dict-encoding.h.
Referenced by impala::DictEncoder< T >::Put().
T impala::DictEncoder< T >::Node::value |
The dictionary value.
Definition at line 136 of file dict-encoding.h.
Referenced by impala::DictEncoder< T >::Put(), and impala::DictEncoder< T >::WriteDict().