MCPcopy Create free account
hub / github.com/apache/impala / TmpFileIndexRange

Class TmpFileIndexRange

be/src/runtime/tmp-file-mgr.h:663–670  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

661 /// Index Range in the 'tmp_files'. Used to keep track of index range
662 /// corresponding to a given priority.
663 struct TmpFileIndexRange {
664 TmpFileIndexRange(int start, int end)
665 : start(start), end(end) {}
666 // Start index of the range.
667 const int start;
668 // End index of the range.
669 const int end;
670 };
671 /// Map storing the index range in the 'tmp_files', corresponding to scratch dirs's
672 /// priority.
673 std::map<int, TmpFileIndexRange> tmp_files_index_range_;

Callers 1

TmpFileGroupMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected