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

Method GetIsAutoIncrement

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

Source from the content-addressed store, hash-verified

94}
95
96arrow::Result<bool> ColumnMetadata::GetIsAutoIncrement() const {
97 std::string auto_increment_string;
98 ARROW_ASSIGN_OR_RAISE(auto_increment_string, metadata_map_->Get(kIsAutoIncrement));
99 return StringToBoolean(auto_increment_string);
100}
101
102arrow::Result<bool> ColumnMetadata::GetIsCaseSensitive() const {
103 std::string is_case_sensitive;

Callers 1

IsAutoUniqueMethod · 0.80

Calls 3

StringToBooleanFunction · 0.85
ARROW_ASSIGN_OR_RAISEFunction · 0.50
GetMethod · 0.45

Tested by

no test coverage detected