MCPcopy Create free account
hub / github.com/apache/arrow / FormatValue

Method FormatValue

cpp/src/parquet/column_scanner.h:208–212  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

206
207template <typename DType>
208inline void TypedScanner<DType>::FormatValue(void* val, char* buffer, int bufsize,
209 int width) {
210 std::string fmt = format_fwf<DType>(width);
211 snprintf(buffer, bufsize, fmt.c_str(), *reinterpret_cast<T*>(val));
212}
213
214template <>
215inline void TypedScanner<Int96Type>::FormatValue(void* val, char* buffer, int bufsize,

Calls 5

Int96ToStringFunction · 0.85
ByteArrayToStringFunction · 0.85
descrFunction · 0.85
type_lengthMethod · 0.80

Tested by

no test coverage detected