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