Skip to content

Optimize is_distinct_from / is_not_distinct_from #4482

@Dandandan

Description

@Dandandan

Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Currently is_distinct_from and is_not_disctinct_from is written in an unoptimized way:

left
        .iter()
        .zip(right.iter())
        .map(|(x, y)| Some(x != y))
        .collect()

Describe the solution you'd like
Write a faster kernel.

Describe alternatives you've considered

Additional context

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or requestperformanceMake DataFusion faster

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions