surrealpatch/src/sql/start.rs

54 lines
1.2 KiB
Rust
Raw Normal View History

2020-06-29 15:36:01 +00:00
use crate::sql::comment::shouldbespace;
use crate::sql::common::take_u64;
use nom::bytes::complete::tag_no_case;
use nom::combinator::opt;
use nom::sequence::tuple;
use nom::IResult;
use serde::{Deserialize, Serialize};
use std::fmt;
#[derive(Clone, Debug, Default, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct Start {
pub expr: u64,
}
impl fmt::Display for Start {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "START {}", self.expr)
}
}
pub fn start(i: &str) -> IResult<&str, Start> {
let (i, _) = tag_no_case("START")(i)?;
let (i, _) = opt(tuple((shouldbespace, tag_no_case("AT"))))(i)?;
let (i, _) = shouldbespace(i)?;
let (i, v) = take_u64(i)?;
Ok((i, Start { expr: v }))
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn start_statement() {
let sql = "START 100";
let res = start(sql);
assert!(res.is_ok());
let out = res.unwrap().1;
assert_eq!(out, Start { expr: 100 });
assert_eq!("START 100", format!("{}", out));
}
#[test]
fn start_statement_at() {
let sql = "START AT 100";
let res = start(sql);
assert!(res.is_ok());
let out = res.unwrap().1;
assert_eq!(out, Start { expr: 100 });
assert_eq!("START 100", format!("{}", out));
}
}