* garrow_chunked_array_equal: * @chunked_array: A #GArrowChunkedArray. * @other_chunked_array: A #GArrowChunkedArray to be compared. * * Returns: %TRUE if both of them have the same data, %FALSE * otherwise. * * Since: 0.4.0 */
| 208 | * Since: 0.4.0 |
| 209 | */ |
| 210 | gboolean |
| 211 | garrow_chunked_array_equal(GArrowChunkedArray *chunked_array, |
| 212 | GArrowChunkedArray *other_chunked_array) |
| 213 | { |
| 214 | const auto arrow_chunked_array = garrow_chunked_array_get_raw(chunked_array); |
| 215 | const auto arrow_other_chunked_array = |
| 216 | garrow_chunked_array_get_raw(other_chunked_array); |
| 217 | return arrow_chunked_array->Equals(arrow_other_chunked_array); |
| 218 | } |
| 219 | |
| 220 | /** |
| 221 | * garrow_chunked_array_get_value_data_type: |
nothing calls this directly
no test coverage detected