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

Method Equals

cpp/src/arrow/filesystem/hdfs.cc:347–355  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

345}
346
347bool HdfsOptions::Equals(const HdfsOptions& other) const {
348 return (buffer_size == other.buffer_size && replication == other.replication &&
349 default_block_size == other.default_block_size &&
350 connection_config.host == other.connection_config.host &&
351 connection_config.port == other.connection_config.port &&
352 connection_config.user == other.connection_config.user &&
353 connection_config.kerb_ticket == other.connection_config.kerb_ticket &&
354 connection_config.extra_conf == other.connection_config.extra_conf);
355}
356
357Result<HdfsOptions> HdfsOptions::FromUri(const Uri& uri) {
358 HdfsOptions options;

Callers

nothing calls this directly

Calls 4

optionsFunction · 0.85
type_nameFunction · 0.70
type_nameMethod · 0.45
optionsMethod · 0.45

Tested by

no test coverage detected