| 24 | namespace compute { |
| 25 | |
| 26 | bool SortKey::Equals(const SortKey& other) const { |
| 27 | return target == other.target && order == other.order && |
| 28 | null_placement == other.null_placement; |
| 29 | } |
| 30 | |
| 31 | std::string SortKey::ToString() const { |
| 32 | std::stringstream ss; |