Enumeration
ArrowJoinNullHandlingBehavior
since: 23.0.0
Description [src]
They correspond to the values of
arrow::compute::JoinOptions::NullHandlingBehavior.
Available since: 23.0.0
Members
| Name | Description |
|---|---|
GARROW_JOIN_NULL_HANDLING_EMIT_NULL |
A null in any input results in a null in the output. |
GARROW_JOIN_NULL_HANDLING_SKIP |
Nulls in inputs are skipped. |
GARROW_JOIN_NULL_HANDLING_REPLACE |
Nulls in inputs are replaced with the replacement string. |