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

Function GetValueArgs

cpp/src/arrow/engine/substrait/extension_set.cc:795–803  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

793}
794
795Result<std::vector<compute::Expression>> GetValueArgs(const SubstraitCall& call,
796 int start_index) {
797 std::vector<compute::Expression> expressions;
798 for (int index = start_index; index < call.size(); index++) {
799 ARROW_ASSIGN_OR_RAISE(compute::Expression arg, call.GetValueArg(index));
800 expressions.push_back(arg);
801 }
802 return expressions;
803}
804
805ExtensionIdRegistry::SubstraitCallToArrow DecodeOptionlessOverflowableArithmetic(
806 const std::string& function_name) {

Calls 2

push_backMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected