osirisdb 0.4.0

A SQL database engine built from scratch in Rust featuring a custom parser, binder, query planner, optimizer, catalog, and storage engine.
Documentation
1
2
3
4
5
6
7
8
9
use crate::ast::*;
use crate::common::symbol::Symbol;

/// Represents the SQL `Assignment` structure in the AST.
#[derive(Debug, Clone, PartialEq)]
pub struct Assignment {
    pub column: Symbol,
    pub value: Expr,
}