| 219 | ABSL_MUST_USE_RESULT bool test_only() const { return test_only_; } |
| 220 | |
| 221 | void set_test_only(bool test_only) { test_only_ = test_only; } |
| 222 | |
| 223 | friend void swap(SelectExpr& lhs, SelectExpr& rhs) noexcept { |
| 224 | using std::swap; |
no outgoing calls