kou commented on code in PR #46774:
URL: https://github.com/apache/arrow/pull/46774#discussion_r2141419496
##########
c_glib/arrow-glib/composite-data-type.cpp:
##########
@@ -767,4 +767,64 @@ garrow_run_end_encoded_data_type_get_value_data_type(
return garrow_data_type_new_raw(&arrow_value_data_type);
}
+G_DEFINE_TYPE(GArrowFixedSizeListDataType,
+ garrow_fixed_size_list_data_type,
+ GARROW_TYPE_BASE_LIST_DATA_TYPE)
+
+static void
+garrow_fixed_size_list_data_type_init(GArrowFixedSizeListDataType *object)
+{
+}
+
+static void
+garrow_fixed_size_list_data_type_class_init(GArrowFixedSizeListDataTypeClass
*klass)
+{
+}
+
+/**
+ * garrow_fixed_size_list_data_type_new_data_type:
+ * @data_type: The data type of elements.
+ * @list_size: The size of value.
Review Comment:
Can we improve description something like the following?
```suggestion
* @list_size: The size of each list.
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]