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

Method VersionLt

cpp/src/parquet/metadata.cc:1585–1595  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1583}
1584
1585bool ApplicationVersion::VersionLt(const ApplicationVersion& other_version) const {
1586 if (application_ != other_version.application_) return false;
1587
1588 if (version.major < other_version.version.major) return true;
1589 if (version.major > other_version.version.major) return false;
1590 DCHECK_EQ(version.major, other_version.version.major);
1591 if (version.minor < other_version.version.minor) return true;
1592 if (version.minor > other_version.version.minor) return false;
1593 DCHECK_EQ(version.minor, other_version.version.minor);
1594 return version.patch < other_version.version.patch;
1595}
1596
1597bool ApplicationVersion::VersionEq(const ApplicationVersion& other_version) const {
1598 return application_ == other_version.application_ &&

Callers 3

ComputeColumnChunkRangeFunction · 0.80
GetColumnPageReaderMethod · 0.80
TESTFunction · 0.80

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.64