| 176 | } |
| 177 | |
| 178 | std::optional<const std::vector<std::string>*> SubstraitCall::GetOption( |
| 179 | std::string_view option_name) const { |
| 180 | auto opt = options_.find(std::string(option_name)); |
| 181 | if (opt == options_.end()) { |
| 182 | return std::nullopt; |
| 183 | } |
| 184 | return &opt->second; |
| 185 | } |
| 186 | |
| 187 | void SubstraitCall::SetOption(std::string_view option_name, |
| 188 | const std::vector<std::string_view>& option_preferences) { |
no test coverage detected