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

Function gadataset_file_format_equal

c_glib/arrow-dataset-glib/file-format.cpp:399–406  ·  view source on GitHub ↗

* gadataset_file_format_equal: * @format: A #GADatasetFileFormat. * @other_format: A #GADatasetFileFormat to be compared. * * Returns: %TRUE if they are the same content file format, %FALSE otherwise. * * Since: 3.0.0 */

Source from the content-addressed store, hash-verified

397 * Since: 3.0.0
398 */
399gboolean
400gadataset_file_format_equal(GADatasetFileFormat *format,
401 GADatasetFileFormat *other_format)
402{
403 const auto arrow_format = gadataset_file_format_get_raw(format);
404 const auto arrow_other_format = gadataset_file_format_get_raw(other_format);
405 return arrow_format->Equals(*arrow_other_format);
406}
407
408G_DEFINE_TYPE(GADatasetCSVFileFormat,
409 gadataset_csv_file_format,

Callers

nothing calls this directly

Calls 2

EqualsMethod · 0.45

Tested by

no test coverage detected