gluesql-core 0.20.0

GlueSQL - Open source SQL database engine fully written in Rust with pure functional execution layer, easily swappable storage and web assembly support!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod condition;
mod hash;
mod inner;
mod left_outer;
mod nested_loop;

pub use {
    condition::{JoinConditionInputPlan, JoinConditionPlan},
    hash::{HashJoinInputPlan, HashJoinPlan},
    inner::{InnerJoinInputPlan, InnerJoinPlan},
    left_outer::{LeftOuterJoinInputPlan, LeftOuterJoinPlan},
    nested_loop::{NestedLoopJoinInputPlan, NestedLoopJoinPlan},
};