* gparquet_statistics_equal: * @statistics: A #GParquetStatistics. * @other_statistics: A #GParquetStatistics. * * Returns: %TRUE if both of them have the same data, %FALSE * otherwise. * * Since: 8.0.0 */
| 129 | * Since: 8.0.0 |
| 130 | */ |
| 131 | gboolean |
| 132 | gparquet_statistics_equal(GParquetStatistics *statistics, |
| 133 | GParquetStatistics *other_statistics) |
| 134 | { |
| 135 | auto parquet_statistics = gparquet_statistics_get_raw(statistics); |
| 136 | auto parquet_other_statistics = gparquet_statistics_get_raw(other_statistics); |
| 137 | return parquet_statistics->Equals(*parquet_other_statistics); |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * gparquet_statistics_has_n_nulls: |
nothing calls this directly
no test coverage detected