Enumeration

ArrowJoinNullHandlingBehavior

since: 23.0.0

Declaration

enum Arrow.JoinNullHandlingBehavior

Description [src]

They correspond to the values of arrow::compute::JoinOptions::NullHandlingBehavior.

Available since: 23.0.0

Members

GARROW_JOIN_NULL_HANDLING_EMIT_NULL

A null in any input results in a null in the output.

  • Value: 0
  • Available since: 23.0.0
GARROW_JOIN_NULL_HANDLING_SKIP

Nulls in inputs are skipped.

  • Value: 1
  • Available since: 23.0.0
GARROW_JOIN_NULL_HANDLING_REPLACE

Nulls in inputs are replaced with the replacement string.

  • Value: 2
  • Available since: 23.0.0