feophant 0.9.0

A SQL database server written in Rust and inspired by PostreSQL
Documentation
mod attribute;
pub use attribute::Attribute;

mod constraints;
pub use constraints::Constraint;
pub use constraints::ConstraintMapper;
pub use constraints::PrimaryKeyConstraint;

mod index;
pub use index::Index;

mod parse_expression;
pub use parse_expression::ParseExpression;

mod parse_tree;
pub use parse_tree::ParseTree;
pub use parse_tree::RawColumn;
pub use parse_tree::RawCreateTableCommand;
pub use parse_tree::RawInsertCommand;
pub use parse_tree::RawSelectCommand;

mod planned_statement;
pub use planned_statement::CartesianJoin;
pub use planned_statement::FullTableScan;
pub use planned_statement::ModifyTablePlan;
pub use planned_statement::Plan;
pub use planned_statement::PlannedCommon;
pub use planned_statement::PlannedStatement;

mod query_result;
pub use query_result::QueryResult;

mod query_tree;
pub use query_tree::CommandType;
pub use query_tree::JoinType;
pub use query_tree::QueryTree;
pub use query_tree::RangeRelation;
pub use query_tree::RangeRelationTable;
//pub use query_tree::TargetEntry;

mod sql_tuple;
pub use sql_tuple::SqlTuple;
pub use sql_tuple::SqlTupleError;

mod table;
pub use table::Table;
pub use table::TableError;

pub mod types;