MCPcopy Create free account
hub / github.com/apache/arrow / gparquet_statistics_equal

Function gparquet_statistics_equal

c_glib/parquet-glib/statistics.cpp:131–138  ·  view source on GitHub ↗

* 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 */

Source from the content-addressed store, hash-verified

129 * Since: 8.0.0
130 */
131gboolean
132gparquet_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:

Callers

nothing calls this directly

Calls 2

EqualsMethod · 0.45

Tested by

no test coverage detected