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

Function ggandiva_native_function_equal

c_glib/gandiva-glib/native-function.cpp:121–129  ·  view source on GitHub ↗

* ggandiva_native_function_equal: * @native_function: A #GGandivaNativeFunction. * @other_native_function: A #GGandivaNativeFunction to be compared. * * Returns: %TRUE if both of them have the same data, %FALSE otherwise. * * Since: 0.14.0 */

Source from the content-addressed store, hash-verified

119 * Since: 0.14.0
120 */
121gboolean
122ggandiva_native_function_equal(GGandivaNativeFunction *native_function,
123 GGandivaNativeFunction *other_native_function)
124{
125 auto gandiva_native_function = ggandiva_native_function_get_raw(native_function);
126 auto gandiva_other_native_function =
127 ggandiva_native_function_get_raw(other_native_function);
128 return gandiva_native_function == gandiva_other_native_function;
129}
130
131/**
132 * ggandiva_native_function_to_string:

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected