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

Method Seek

cpp/src/arrow/io/hdfs.cc:72–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70 }
71
72 Status Seek(int64_t position) {
73 RETURN_NOT_OK(CheckClosed());
74 int ret = driver_->Seek(fs_, file_, position);
75 CHECK_FAILURE(ret, "seek");
76 return Status::OK();
77 }
78
79 Result<int64_t> Tell() {
80 RETURN_NOT_OK(CheckClosed());

Callers

nothing calls this directly

Calls 3

CheckClosedFunction · 0.70
OKFunction · 0.50
SeekMethod · 0.45

Tested by

no test coverage detected