OmniSciDB
94e8789169
|
#include <Importer.h>
Public Member Functions | |
TypedImportBuffer (const ColumnDescriptor *col_desc, StringDictionary *string_dict) | |
~TypedImportBuffer () | |
void | addBoolean (const int8_t v) |
void | addTinyint (const int8_t v) |
void | addSmallint (const int16_t v) |
void | addInt (const int32_t v) |
void | addBigint (const int64_t v) |
void | addFloat (const float v) |
void | addDouble (const double v) |
void | addString (const std::string_view v) |
void | addGeoString (const std::string_view v) |
void | addArray (const ArrayDatum &v) |
std::vector< std::string > & | addStringArray () |
void | addStringArray (const std::vector< std::string > &arr) |
void | addDictEncodedString (const std::vector< std::string > &string_vec) |
void | addDictEncodedStringArray (const std::vector< std::vector< std::string >> &string_array_vec) |
const SQLTypeInfo & | getTypeInfo () const |
const ColumnDescriptor * | getColumnDesc () const |
StringDictionary * | getStringDictionary () const |
int8_t * | getAsBytes () const |
size_t | getElementSize () const |
std::vector< std::string > * | getStringBuffer () const |
std::vector< std::string > * | getGeoStringBuffer () const |
std::vector< ArrayDatum > * | getArrayBuffer () const |
std::vector< std::vector < std::string > > * | getStringArrayBuffer () const |
std::vector< ArrayDatum > * | getStringArrayDictBuffer () const |
int8_t * | getStringDictBuffer () const |
bool | stringDictCheckpoint () |
void | clear () |
size_t | add_values (const ColumnDescriptor *cd, const TColumn &data) |
size_t | add_arrow_values (const ColumnDescriptor *cd, const arrow::Array &data, const bool exact_type_match, const ArraySliceRange &slice_range, BadRowsTracker *bad_rows_tracker) |
void | add_value (const ColumnDescriptor *cd, const std::string_view val, const bool is_null, const CopyParams ©_params, const int64_t replicate_count=0) |
void | add_value (const ColumnDescriptor *cd, const TDatum &val, const bool is_null, const int64_t replicate_count=0) |
void | pop_value () |
int64_t | get_replicate_count () const |
void | set_replicate_count (const int64_t replicate_count) |
template<typename DATA_TYPE > | |
size_t | convert_arrow_val_to_import_buffer (const ColumnDescriptor *cd, const arrow::Array &array, std::vector< DATA_TYPE > &buffer, const ArraySliceRange &slice_range, BadRowsTracker *const bad_rows_tracker) |
template<typename DATA_TYPE > | |
auto | del_values (std::vector< DATA_TYPE > &buffer, BadRowsTracker *const bad_rows_tracker) |
auto | del_values (const SQLTypes type, BadRowsTracker *const bad_rows_tracker) |
template<typename DATA_TYPE > | |
size_t | convert_arrow_val_to_import_buffer (const ColumnDescriptor *cd, const Array &array, std::vector< DATA_TYPE > &buffer, const ArraySliceRange &slice_range, import_export::BadRowsTracker *const bad_rows_tracker) |
Public Attributes | |
std::vector< std::unique_ptr < TypedImportBuffer > > * | import_buffers |
size_t | col_idx |
std::vector< int8_t > * | bool_buffer_ |
std::vector< int8_t > * | tinyint_buffer_ |
std::vector< int16_t > * | smallint_buffer_ |
std::vector< int32_t > * | int_buffer_ |
std::vector< int64_t > * | bigint_buffer_ |
std::vector< float > * | float_buffer_ |
std::vector< double > * | double_buffer_ |
std::vector< std::string > * | string_buffer_ |
std::vector< std::string > * | geo_string_buffer_ |
std::vector< ArrayDatum > * | array_buffer_ |
std::vector< std::vector < std::string > > * | string_array_buffer_ |
std::vector< uint8_t > * | string_dict_i8_buffer_ |
std::vector< uint16_t > * | string_dict_i16_buffer_ |
std::vector< int32_t > * | string_dict_i32_buffer_ |
std::vector< ArrayDatum > * | string_array_dict_buffer_ |
Private Attributes | |
union { | |
std::vector< int8_t > * bool_buffer_ | |
std::vector< int8_t > * tinyint_buffer_ | |
std::vector< int16_t > * smallint_buffer_ | |
std::vector< int32_t > * int_buffer_ | |
std::vector< int64_t > * bigint_buffer_ | |
std::vector< float > * float_buffer_ | |
std::vector< double > * double_buffer_ | |
std::vector< std::string > * string_buffer_ | |
std::vector< std::string > * geo_string_buffer_ | |
std::vector< ArrayDatum > * array_buffer_ | |
std::vector< std::vector < std::string > > * string_array_buffer_ | |
}; | |
union { | |
std::vector< uint8_t > * string_dict_i8_buffer_ | |
std::vector< uint16_t > * string_dict_i16_buffer_ | |
std::vector< int32_t > * string_dict_i32_buffer_ | |
std::vector< ArrayDatum > * string_array_dict_buffer_ | |
}; | |
const ColumnDescriptor * | column_desc_ |
StringDictionary * | string_dict_ |
size_t | replicate_count_ = 0 |
Definition at line 83 of file Importer.h.
|
inline |
Definition at line 85 of file Importer.h.
References array_buffer_, bigint_buffer_, bool_buffer_, CHECK, ColumnDescriptor::columnType, double_buffer_, float_buffer_, geo_string_buffer_, SQLTypeInfo::get_compression(), SQLTypeInfo::get_size(), SQLTypeInfo::get_subtype(), SQLTypeInfo::get_type(), int_buffer_, IS_STRING, kARRAY, kBIGINT, kBOOLEAN, kCHAR, kDATE, kDECIMAL, kDOUBLE, kENCODING_DICT, kFLOAT, kINT, kLINESTRING, kMULTIPOLYGON, kNUMERIC, kPOINT, kPOLYGON, kSMALLINT, kTEXT, kTIME, kTIMESTAMP, kTINYINT, kVARCHAR, smallint_buffer_, string_array_buffer_, string_array_dict_buffer_, string_buffer_, string_dict_i16_buffer_, string_dict_i32_buffer_, string_dict_i8_buffer_, and tinyint_buffer_.
|
inline |
Definition at line 156 of file Importer.h.
References array_buffer_, bigint_buffer_, bool_buffer_, CHECK, column_desc_, ColumnDescriptor::columnType, double_buffer_, float_buffer_, geo_string_buffer_, SQLTypeInfo::get_compression(), SQLTypeInfo::get_size(), SQLTypeInfo::get_subtype(), SQLTypeInfo::get_type(), int_buffer_, IS_STRING, kARRAY, kBIGINT, kBOOLEAN, kCHAR, kDATE, kDECIMAL, kDOUBLE, kENCODING_DICT, kFLOAT, kINT, kLINESTRING, kMULTIPOLYGON, kNUMERIC, kPOINT, kPOLYGON, kSMALLINT, kTEXT, kTIME, kTIMESTAMP, kTINYINT, kVARCHAR, smallint_buffer_, string_array_buffer_, string_array_dict_buffer_, string_buffer_, string_dict_i16_buffer_, string_dict_i32_buffer_, string_dict_i8_buffer_, and tinyint_buffer_.
size_t import_export::TypedImportBuffer::add_arrow_values | ( | const ColumnDescriptor * | cd, |
const arrow::Array & | data, | ||
const bool | exact_type_match, | ||
const ArraySliceRange & | slice_range, | ||
BadRowsTracker * | bad_rows_tracker | ||
) |
Definition at line 853 of file Importer.cpp.
References arrow_throw_if(), bigint_buffer_, bool_buffer_, ColumnDescriptor::columnName, ColumnDescriptor::columnType, convert_arrow_val_to_import_buffer(), double_buffer_, float_buffer_, geo_string_buffer_, SQLTypeInfo::get_notnull(), SQLTypeInfo::get_type(), int_buffer_, kARRAY, kBIGINT, kBOOLEAN, kCHAR, kDATE, kDECIMAL, kDOUBLE, kFLOAT, kINT, kLINESTRING, kMULTIPOLYGON, kNUMERIC, kPOINT, kPOLYGON, kSMALLINT, kTEXT, kTIME, kTIMESTAMP, kTINYINT, kVARCHAR, smallint_buffer_, omnisci.dtypes::STRING, string_buffer_, tinyint_buffer_, and run_benchmark_import::type.
void import_export::TypedImportBuffer::add_value | ( | const ColumnDescriptor * | cd, |
const std::string_view | val, | ||
const bool | is_null, | ||
const CopyParams & | copy_params, | ||
const int64_t | replicate_count = 0 |
||
) |
Definition at line 503 of file Importer.cpp.
References addArray(), addBigint(), addBoolean(), addDouble(), addFloat(), addGeoString(), addInt(), addSmallint(), addString(), addStringArray(), addTinyint(), Datum::bigintval, Datum::boolval, CHECK, ColumnDescriptor::columnName, ColumnDescriptor::columnType, convert_decimal_value_to_scale(), SQLTypeInfo::get_elem_type(), SQLTypeInfo::get_notnull(), SQLTypeInfo::get_size(), SQLTypeInfo::get_subtype(), SQLTypeInfo::get_type(), inline_fixed_encoding_null_val(), Datum::intval, IS_STRING, kARRAY, kBIGINT, kBOOLEAN, kCHAR, kDATE, kDECIMAL, kDOUBLE, kFLOAT, kINT, kLINESTRING, kMULTIPOLYGON, kNUMERIC, kPOINT, kPOLYGON, kSMALLINT, kTEXT, kTIME, kTIMESTAMP, kTINYINT, kVARCHAR, StringDictionary::MAX_STRLEN, NULL_DOUBLE, NULL_FLOAT, import_export::NullArray(), import_export::delimited_parser::parse_string_array(), set_replicate_count(), Datum::smallintval, import_export::StringToArray(), StringToDatum(), Datum::tinyintval, to_string(), and run_benchmark_import::type.
void import_export::TypedImportBuffer::add_value | ( | const ColumnDescriptor * | cd, |
const TDatum & | val, | ||
const bool | is_null, | ||
const int64_t | replicate_count = 0 |
||
) |
Definition at line 1275 of file Importer.cpp.
References addArray(), addBigint(), import_export::addBinaryStringArray(), addBoolean(), addDouble(), addFloat(), addGeoString(), addInt(), addSmallint(), addString(), addStringArray(), addTinyint(), CHECK, ColumnDescriptor::columnName, ColumnDescriptor::columnType, decimal_to_int_type(), SQLTypeInfo::get_notnull(), SQLTypeInfo::get_subtype(), SQLTypeInfo::get_type(), inline_fixed_encoding_null_val(), SQLTypeInfo::is_decimal(), IS_STRING, kARRAY, kBIGINT, kBOOLEAN, kCHAR, kDATE, kDOUBLE, kFLOAT, kINT, kLINESTRING, kMULTIPOLYGON, kPOINT, kPOLYGON, kSMALLINT, kTEXT, kTIME, kTIMESTAMP, kTINYINT, kVARCHAR, NULL_DOUBLE, NULL_FLOAT, import_export::NullArray(), set_replicate_count(), import_export::TDatumToArrayDatum(), and run_benchmark_import::type.
size_t import_export::TypedImportBuffer::add_values | ( | const ColumnDescriptor * | cd, |
const TColumn & | data | ||
) |
Definition at line 954 of file Importer.cpp.
References addArray(), addStringArray(), bigint_buffer_, bool_buffer_, checked_malloc(), ColumnDescriptor::columnName, ColumnDescriptor::columnType, double_buffer_, float_buffer_, geo_string_buffer_, SQLTypeInfo::get_notnull(), SQLTypeInfo::get_subtype(), SQLTypeInfo::get_type(), generate_TableFunctionsFactory_init::i, inline_fixed_encoding_null_val(), int_buffer_, IS_STRING, generate_TableFunctionsFactory_init::j, kARRAY, kBIGINT, kBOOLEAN, kCHAR, kDATE, kDECIMAL, kDOUBLE, kFLOAT, kINT, kLINESTRING, kMULTIPOLYGON, kNUMERIC, kPOINT, kPOLYGON, kSMALLINT, kTEXT, kTIME, kTIMESTAMP, kTINYINT, kVARCHAR, NULL_DOUBLE, NULL_FLOAT, import_export::NullArray(), smallint_buffer_, string_buffer_, and tinyint_buffer_.
|
inline |
Definition at line 241 of file Importer.h.
References array_buffer_.
Referenced by add_value(), and add_values().
|
inline |
Definition at line 231 of file Importer.h.
References bigint_buffer_.
Referenced by add_value().
|
inline |
Definition at line 223 of file Importer.h.
References bool_buffer_.
Referenced by add_value().
void import_export::TypedImportBuffer::addDictEncodedString | ( | const std::vector< std::string > & | string_vec | ) |
Definition at line 475 of file Importer.cpp.
References CHECK, column_desc_, ColumnDescriptor::columnType, SQLTypeInfo::get_size(), StringDictionary::getOrAddBulk(), StringDictionary::MAX_STRLEN, string_dict_, string_dict_i16_buffer_, string_dict_i32_buffer_, and string_dict_i8_buffer_.
|
inline |
Definition at line 254 of file Importer.h.
References CHECK, checked_malloc(), StringDictionary::getOrAddBulkArray(), StringDictionary::MAX_STRLEN, string_array_dict_buffer_, and string_dict_.
|
inline |
Definition at line 235 of file Importer.h.
References double_buffer_.
Referenced by add_value().
|
inline |
Definition at line 233 of file Importer.h.
References float_buffer_.
Referenced by add_value().
|
inline |
Definition at line 239 of file Importer.h.
References geo_string_buffer_.
Referenced by add_value().
|
inline |
Definition at line 229 of file Importer.h.
References int_buffer_.
Referenced by add_value().
|
inline |
Definition at line 227 of file Importer.h.
References smallint_buffer_.
Referenced by add_value().
|
inline |
Definition at line 237 of file Importer.h.
References string_buffer_.
Referenced by add_value().
|
inline |
Definition at line 243 of file Importer.h.
References string_array_buffer_.
Referenced by add_value(), and add_values().
|
inline |
Definition at line 248 of file Importer.h.
References string_array_buffer_.
|
inline |
Definition at line 225 of file Importer.h.
References tinyint_buffer_.
Referenced by add_value().
|
inline |
Definition at line 374 of file Importer.h.
References array_buffer_, bigint_buffer_, bool_buffer_, CHECK, column_desc_, ColumnDescriptor::columnType, double_buffer_, float_buffer_, geo_string_buffer_, SQLTypeInfo::get_compression(), SQLTypeInfo::get_size(), SQLTypeInfo::get_subtype(), SQLTypeInfo::get_type(), int_buffer_, IS_STRING, kARRAY, kBIGINT, kBOOLEAN, kCHAR, kDATE, kDECIMAL, kDOUBLE, kENCODING_DICT, kFLOAT, kINT, kLINESTRING, kMULTIPOLYGON, kNUMERIC, kPOINT, kPOLYGON, kSMALLINT, kTEXT, kTIME, kTIMESTAMP, kTINYINT, kVARCHAR, smallint_buffer_, string_array_buffer_, string_array_dict_buffer_, string_buffer_, string_dict_i16_buffer_, string_dict_i32_buffer_, string_dict_i8_buffer_, and tinyint_buffer_.
size_t import_export::TypedImportBuffer::convert_arrow_val_to_import_buffer | ( | const ColumnDescriptor * | cd, |
const arrow::Array & | array, | ||
std::vector< DATA_TYPE > & | buffer, | ||
const ArraySliceRange & | slice_range, | ||
BadRowsTracker *const | bad_rows_tracker | ||
) |
size_t import_export::TypedImportBuffer::convert_arrow_val_to_import_buffer | ( | const ColumnDescriptor * | cd, |
const Array & | array, | ||
std::vector< DATA_TYPE > & | buffer, | ||
const ArraySliceRange & | slice_range, | ||
import_export::BadRowsTracker *const | bad_rows_tracker | ||
) |
Definition at line 768 of file Importer.cpp.
References col_idx, anonymous_namespace{ArrowImporter.h}::error_context(), geo_string_buffer_, SQLTypeInfo::get_type(), import_export::Importer::getCatalog(), Geospatial::GeoTypesFactory::getGeoColumns(), Geospatial::GeoTypesFactory::getNullGeoColumns(), import_buffers, import_export::BadRowsTracker::importer, import_export::BadRowsTracker::mutex, import_export::BadRowsTracker::rows, import_export::Importer::set_geo_physical_import_buffer(), and anonymous_namespace{ArrowImporter.h}::value_getter().
auto import_export::TypedImportBuffer::del_values | ( | std::vector< DATA_TYPE > & | buffer, |
BadRowsTracker *const | bad_rows_tracker | ||
) |
auto import_export::TypedImportBuffer::del_values | ( | const SQLTypes | type, |
BadRowsTracker *const | bad_rows_tracker | ||
) |
|
inline |
|
inline |
Definition at line 344 of file Importer.h.
References array_buffer_.
|
inline |
Definition at line 286 of file Importer.h.
References column_desc_, ColumnDescriptor::columnType, SQLTypeInfo::get_type(), kBIGINT, kBOOLEAN, kDATE, kDECIMAL, kDOUBLE, kFLOAT, kINT, kNUMERIC, kSMALLINT, kTIME, kTIMESTAMP, and kTINYINT.
Referenced by import_export::anonymous_namespace{Importer.cpp}::double_value_at(), import_export::anonymous_namespace{Importer.cpp}::float_value_at(), and import_export::anonymous_namespace{Importer.cpp}::int_value_at().
|
inline |
Definition at line 282 of file Importer.h.
References column_desc_.
|
inline |
Definition at line 313 of file Importer.h.
References column_desc_, ColumnDescriptor::columnType, SQLTypeInfo::get_type(), kBIGINT, kBOOLEAN, kDATE, kDECIMAL, kDOUBLE, kFLOAT, kINT, kNUMERIC, kSMALLINT, kTIME, kTIMESTAMP, and kTINYINT.
|
inline |
Definition at line 342 of file Importer.h.
References geo_string_buffer_.
|
inline |
Definition at line 346 of file Importer.h.
References string_array_buffer_.
|
inline |
Definition at line 350 of file Importer.h.
References string_array_dict_buffer_.
|
inline |
Definition at line 340 of file Importer.h.
References string_buffer_.
|
inline |
Definition at line 354 of file Importer.h.
References column_desc_, ColumnDescriptor::columnType, and SQLTypeInfo::get_size().
Referenced by import_export::anonymous_namespace{Importer.cpp}::int_value_at().
|
inline |
Definition at line 284 of file Importer.h.
References string_dict_.
|
inline |
Definition at line 280 of file Importer.h.
References column_desc_, and ColumnDescriptor::columnType.
Referenced by import_export::anonymous_namespace{Importer.cpp}::double_value_at(), import_export::anonymous_namespace{Importer.cpp}::float_value_at(), and import_export::anonymous_namespace{Importer.cpp}::int_value_at().
void import_export::TypedImportBuffer::pop_value | ( | ) |
Definition at line 708 of file Importer.cpp.
References array_buffer_, bigint_buffer_, bool_buffer_, CHECK, column_desc_, ColumnDescriptor::columnType, decimal_to_int_type(), double_buffer_, float_buffer_, geo_string_buffer_, SQLTypeInfo::get_subtype(), SQLTypeInfo::get_type(), int_buffer_, SQLTypeInfo::is_decimal(), IS_STRING, kARRAY, kBIGINT, kBOOLEAN, kCHAR, kDATE, kDOUBLE, kFLOAT, kINT, kLINESTRING, kMULTIPOLYGON, kPOINT, kPOLYGON, kSMALLINT, kTEXT, kTIME, kTIMESTAMP, kTINYINT, kVARCHAR, smallint_buffer_, string_array_buffer_, string_buffer_, tinyint_buffer_, and run_benchmark_import::type.
|
inline |
Definition at line 474 of file Importer.h.
References replicate_count_.
Referenced by add_value().
|
inline |
Definition at line 367 of file Importer.h.
References StringDictionary::checkpoint(), and string_dict_.
union { ... } |
union { ... } |
std::vector<ArrayDatum>* import_export::TypedImportBuffer::array_buffer_ |
Definition at line 500 of file Importer.h.
Referenced by addArray(), clear(), getArrayBuffer(), pop_value(), TypedImportBuffer(), and ~TypedImportBuffer().
std::vector<int64_t>* import_export::TypedImportBuffer::bigint_buffer_ |
Definition at line 495 of file Importer.h.
Referenced by add_arrow_values(), add_values(), addBigint(), clear(), pop_value(), TypedImportBuffer(), and ~TypedImportBuffer().
std::vector<int8_t>* import_export::TypedImportBuffer::bool_buffer_ |
Definition at line 491 of file Importer.h.
Referenced by add_arrow_values(), add_values(), addBoolean(), clear(), pop_value(), TypedImportBuffer(), and ~TypedImportBuffer().
size_t import_export::TypedImportBuffer::col_idx |
Definition at line 487 of file Importer.h.
Referenced by convert_arrow_val_to_import_buffer().
|
private |
Definition at line 509 of file Importer.h.
Referenced by addDictEncodedString(), clear(), getAsBytes(), getColumnDesc(), getElementSize(), getStringDictBuffer(), getTypeInfo(), pop_value(), and ~TypedImportBuffer().
std::vector<double>* import_export::TypedImportBuffer::double_buffer_ |
Definition at line 497 of file Importer.h.
Referenced by add_arrow_values(), add_values(), addDouble(), clear(), pop_value(), TypedImportBuffer(), and ~TypedImportBuffer().
std::vector<float>* import_export::TypedImportBuffer::float_buffer_ |
Definition at line 496 of file Importer.h.
Referenced by add_arrow_values(), add_values(), addFloat(), clear(), pop_value(), TypedImportBuffer(), and ~TypedImportBuffer().
std::vector<std::string>* import_export::TypedImportBuffer::geo_string_buffer_ |
Definition at line 499 of file Importer.h.
Referenced by add_arrow_values(), add_values(), addGeoString(), clear(), convert_arrow_val_to_import_buffer(), getGeoStringBuffer(), pop_value(), TypedImportBuffer(), and ~TypedImportBuffer().
std::vector<std::unique_ptr<TypedImportBuffer> >* import_export::TypedImportBuffer::import_buffers |
Definition at line 486 of file Importer.h.
Referenced by convert_arrow_val_to_import_buffer().
std::vector<int32_t>* import_export::TypedImportBuffer::int_buffer_ |
Definition at line 494 of file Importer.h.
Referenced by add_arrow_values(), add_values(), addInt(), clear(), pop_value(), TypedImportBuffer(), and ~TypedImportBuffer().
|
private |
Definition at line 511 of file Importer.h.
Referenced by get_replicate_count(), and set_replicate_count().
std::vector<int16_t>* import_export::TypedImportBuffer::smallint_buffer_ |
Definition at line 493 of file Importer.h.
Referenced by add_arrow_values(), add_values(), addSmallint(), clear(), pop_value(), TypedImportBuffer(), and ~TypedImportBuffer().
std::vector<std::vector<std::string> >* import_export::TypedImportBuffer::string_array_buffer_ |
Definition at line 501 of file Importer.h.
Referenced by addStringArray(), clear(), getStringArrayBuffer(), pop_value(), TypedImportBuffer(), and ~TypedImportBuffer().
std::vector<ArrayDatum>* import_export::TypedImportBuffer::string_array_dict_buffer_ |
Definition at line 507 of file Importer.h.
Referenced by addDictEncodedStringArray(), clear(), getStringArrayDictBuffer(), TypedImportBuffer(), and ~TypedImportBuffer().
std::vector<std::string>* import_export::TypedImportBuffer::string_buffer_ |
Definition at line 498 of file Importer.h.
Referenced by add_arrow_values(), add_values(), addString(), clear(), getStringBuffer(), pop_value(), TypedImportBuffer(), and ~TypedImportBuffer().
|
private |
Definition at line 510 of file Importer.h.
Referenced by addDictEncodedString(), addDictEncodedStringArray(), getStringDictionary(), and stringDictCheckpoint().
std::vector<uint16_t>* import_export::TypedImportBuffer::string_dict_i16_buffer_ |
Definition at line 505 of file Importer.h.
Referenced by addDictEncodedString(), clear(), TypedImportBuffer(), and ~TypedImportBuffer().
std::vector<int32_t>* import_export::TypedImportBuffer::string_dict_i32_buffer_ |
Definition at line 506 of file Importer.h.
Referenced by addDictEncodedString(), clear(), TypedImportBuffer(), and ~TypedImportBuffer().
std::vector<uint8_t>* import_export::TypedImportBuffer::string_dict_i8_buffer_ |
Definition at line 504 of file Importer.h.
Referenced by addDictEncodedString(), clear(), TypedImportBuffer(), and ~TypedImportBuffer().
std::vector<int8_t>* import_export::TypedImportBuffer::tinyint_buffer_ |
Definition at line 492 of file Importer.h.
Referenced by add_arrow_values(), add_values(), addTinyint(), clear(), pop_value(), TypedImportBuffer(), and ~TypedImportBuffer().