Skip to main content

robin_sparkless_core/engine/
join.rs

1//! Join type for engine-agnostic join operations.
2
3use serde::{Deserialize, Serialize};
4
5#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
6pub enum JoinType {
7    Inner,
8    Left,
9    Right,
10    Full,
11    LeftAnti,
12    LeftSemi,
13    Cross,
14}