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

Method GetIsCaseSensitive

cpp/src/arrow/flight/sql/column_metadata.cc:102–106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

100}
101
102arrow::Result<bool> ColumnMetadata::GetIsCaseSensitive() const {
103 std::string is_case_sensitive;
104 ARROW_ASSIGN_OR_RAISE(is_case_sensitive, metadata_map_->Get(kIsCaseSensitive));
105 return StringToBoolean(is_case_sensitive);
106}
107
108arrow::Result<bool> ColumnMetadata::GetIsReadOnly() const {
109 std::string is_read_only;

Callers 1

IsCaseSensitiveMethod · 0.80

Calls 3

StringToBooleanFunction · 0.85
ARROW_ASSIGN_OR_RAISEFunction · 0.50
GetMethod · 0.45

Tested by

no test coverage detected