|
template<typename T > |
static arrow::Status | appendToList (std::unique_ptr< arrow::FixedSizeListBuilder > &builder, T *data, int size=1) |
|
template<typename HolderType , typename T > |
static arrow::Status | append (HolderType &holder, T value) |
|
template<typename HolderType > |
static arrow::Status | flush (HolderType &holder) |
|
template<typename HolderType , typename T > |
static arrow::Status | append (HolderType &holder, T *data) |
|
template<typename HolderType , typename T , int N> |
static arrow::Status | append (HolderType &holder, T(&data)[N]) |
| Appender for the array case.
|
|
template<typename HolderType , typename T , int N> |
static arrow::Status | append (HolderType &holder, std::array< T, N > const &data) |
| Appender for the array case.
|
|
template<typename HolderType , typename T > |
static arrow::Status | append (HolderType &holder, std::vector< T > const &data) |
| Appender for the vector case.
|
|
template<typename HolderType , typename T > |
static void | unsafeAppend (HolderType &holder, std::vector< T > const &value) |
|
template<typename HolderType , typename T > |
static void | unsafeAppend (HolderType &holder, T value) |
|
template<typename HolderType , typename T > |
static void | unsafeAppend (HolderType &holder, T *value) |
|
template<typename HolderType , typename PTR > |
static arrow::Status | bulkAppend (HolderType &holder, size_t bulkSize, const PTR ptr) |
|
template<typename HolderType , typename PTR > |
static arrow::Status | bulkAppendChunked (HolderType &holder, BulkInfo< PTR > info) |
|
template<typename HolderType , typename ITERATOR > |
static arrow::Status | append (HolderType &holder, std::pair< ITERATOR, ITERATOR > ip) |
|
template<typename HolderType , typename ITERATOR > |
static void | unsafeAppend (HolderType &holder, std::pair< ITERATOR, ITERATOR > ip) |
|
Definition at line 105 of file TableBuilder.h.