| 149 | } |
| 150 | |
| 151 | void SubstraitCall::SetEnumArg(int index, std::string enum_arg) { |
| 152 | size_ = std::max(size_, index + 1); |
| 153 | enum_args_[index] = std::move(enum_arg); |
| 154 | } |
| 155 | |
| 156 | Result<compute::Expression> SubstraitCall::GetValueArg(int index) const { |
| 157 | if (index >= size_) { |