MCPcopy Create free account
hub / github.com/bytedance/bolt / toString

Method toString

bolt/expression/FieldReference.cpp:221–229  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

219}
220
221std::string FieldReference::toString(bool recursive) const {
222 std::stringstream out;
223 if (!inputs_.empty() && recursive) {
224 appendInputs(out);
225 out << ".";
226 }
227 out << name();
228 return out.str();
229}
230
231std::string FieldReference::toSql(
232 std::vector<VectorPtr>* complexConstants) const {

Callers 1

Calls 2

strMethod · 0.80
emptyMethod · 0.45

Tested by

no test coverage detected