1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//! This module contains functions and types for parsing SQL queries.
//!

// TODO: Remove this
#![allow(dead_code, unused_imports, unused_variables)]

pub mod ast;
pub mod token;
pub mod lex;
pub mod parser;
pub mod tests;
pub use self::parser::Parser;

/// Represents a substring in the query string in byte indices.
#[derive(Debug, PartialEq)]
pub struct Span {
    pub lo: usize,
    pub hi: usize,
}

/// Main function of this module: Takes a sql query as string and returns
/// the parsed AST.
pub fn parse(query: &str) -> Result<ast::Query,parser::ParseError> {

    Parser::create(query).parse()

}