MCPcopy Create free account
hub / github.com/FoundationDB/fdb-document-layer / toString

Method toString

src/QLPlan.actor.cpp:1956–1965  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1954}
1955
1956std::string PlanCheckpoint::toString() {
1957 std::string s;
1958 s.append(format("scans: %d states: %d\n", scans.size(), states.size()));
1959 for (int i = 0; i < scans.size(); ++i) {
1960 s.append(format("\t scan %d begin: %s\n", i, printable(scans[i].bounds.begin).c_str()));
1961 s.append(format("\t scan %d split: %s\n", i, printable(scans[i].split).c_str()));
1962 s.append(format("\t scan %d end: %s\n", i, printable(scans[i].bounds.end).c_str()));
1963 }
1964 return s;
1965}

Callers 3

construct_filter_planMethod · 0.45

Calls 2

appendMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected