构造函数
ArrowFieldnew_full
声明 [src]
GArrowField*
garrow_field_new_full (
const gchar* name,
GArrowDataType* data_type,
gboolean nullable
)
参数
name (名称)
-
类型:
const gchar*
字段的名称。
数据由函数的调用者拥有。 该值是一个以 NUL 结尾的 UTF-8 字符串。 data_type (数据类型)
-
类型:
GArrowDataType
字段的数据类型。
数据由函数的调用者拥有。 nullable (可为空)
-
类型:
gboolean
是否可以包含 null 值。
返回值
类型: GArrowField
新创建的 GArrowField
。
函数的调用者拥有该数据的所有权,并负责释放它。 |