| 501 | }; |
| 502 | |
| 503 | inline Status CheckNonNested(const FieldRef& ref) { |
| 504 | if (ref.IsNested()) { |
| 505 | return Status::KeyError("Nested keys not supported for SortKeys"); |
| 506 | } |
| 507 | return Status::OK(); |
| 508 | } |
| 509 | |
| 510 | template <typename T> |
| 511 | Result<T> PrependInvalidColumn(Result<T> res) { |
no test coverage detected