Class
ArrowCSVReadOptions
Instance methods
garrow_csv_read_options_add_column_name
garrow_csv_read_options_add_schema
Add value types for columns in the schema.
Available since: 0.12.0
Properties
Arrow.CSVReadOptions:allow-newlines-in-values
Whether values are allowed to contain CR (0x0d) and LF (0x0a) characters.
Available since: 0.12.0
Arrow.CSVReadOptions:allow-null-strings
Whether string / binary columns can have null values.
If TRUE
, then strings in “null_values” are considered null for string columns.
If FALSE
, then all strings are valid string values.
Available since: 0.14.0
Arrow.CSVReadOptions:block-size
Block size we request from the IO layer; also determines the size
of chunks when GArrowCSVReadOptions:use-threads
is TRUE
.
Available since: 0.12.0
Arrow.CSVReadOptions:check-utf8
Whether to check UTF8 validity of string columns.
Available since: 0.12.0
Arrow.CSVReadOptions:escape-character
Escaping character. This is used only when
GArrowCSVReadOptions:is-escaped
is TRUE
.
Available since: 0.12.0
Arrow.CSVReadOptions:generate-column-names
Arrow.CSVReadOptions:ignore-empty-lines
Whether empty lines are ignored. If FALSE
, an empty line
represents a simple empty value (assuming a one-column CSV file).
Available since: 0.12.0
Arrow.CSVReadOptions:is-double-quoted
Whether a quote inside a value is double quoted.
Available since: 0.12.0
Arrow.CSVReadOptions:n-skip-rows
The number of header rows to skip (not including the row of column names, if any)
Available since: 0.15.0
Arrow.CSVReadOptions:quote-character
Quoting character. This is used only when
GArrowCSVReadOptions:is-quoted
is TRUE
.
Available since: 0.12.0
Signals
Signals inherited from GObject (1)
GObject.Object::notify
The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.