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

Function ThrowInvalidLogicalType

cpp/src/parquet/schema.cc:38–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36namespace {
37
38void ThrowInvalidLogicalType(const LogicalType& logical_type) {
39 std::stringstream ss;
40 ss << "Invalid logical type: " << logical_type.ToString();
41 throw ParquetException(ss.str());
42}
43
44void CheckColumnBounds(int column_index, size_t max_columns) {
45 if (ARROW_PREDICT_FALSE(column_index < 0 ||

Callers 2

PrimitiveNodeMethod · 0.85
GroupNodeMethod · 0.85

Calls 3

ParquetExceptionFunction · 0.85
strMethod · 0.80
ToStringMethod · 0.45

Tested by

no test coverage detected