robin-sparkless-core 0.16.0

Shared types, config, and error for robin-sparkless (no Polars).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Join type for engine-agnostic join operations.

use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum JoinType {
    Inner,
    Left,
    Right,
    Full,
    LeftAnti,
    LeftSemi,
    Cross,
}