MCPcopy Create free account
hub / github.com/ByConity/ByConity / deserializeFromProtoBase

Method deserializeFromProtoBase

src/QueryPlan/ITransformingStep.cpp:90–96  ·  view source on GitHub ↗

return base_input_stream and step_description

Source from the content-addressed store, hash-verified

88
89// return base_input_stream and step_description
90std::pair<String, DataStream> ITransformingStep::deserializeFromProtoBase(const Protos::ITransformingStep & proto)
91{
92 auto step_description = proto.step_description();
93 DataStream input_stream;
94 input_stream.fillFromProto(proto.input_stream());
95 return std::make_pair(std::move(step_description), std::move(input_stream));
96}
97}

Callers

nothing calls this directly

Calls 1

fillFromProtoMethod · 0.45

Tested by

no test coverage detected