-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathdelete.rs
More file actions
113 lines (103 loc) · 3.15 KB
/
delete.rs
File metadata and controls
113 lines (103 loc) · 3.15 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
use nom::character::complete::multispace1;
use std::{fmt, str};
use common::{schema_table_reference, statement_terminator};
use condition::ConditionExpression;
use keywords::escape_if_keyword;
use nom::bytes::complete::tag_no_case;
use nom::combinator::opt;
use nom::sequence::{delimited, tuple};
use nom::IResult;
use select::where_clause;
use table::Table;
#[derive(Clone, Debug, Default, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct DeleteStatement {
pub table: Table,
pub where_clause: Option<ConditionExpression>,
}
impl fmt::Display for DeleteStatement {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "DELETE FROM ")?;
write!(f, "{}", escape_if_keyword(&self.table.name))?;
if let Some(ref where_clause) = self.where_clause {
write!(f, " WHERE ")?;
write!(f, "{}", where_clause)?;
}
Ok(())
}
}
pub fn deletion(i: &[u8]) -> IResult<&[u8], DeleteStatement> {
let (remaining_input, (_, _, table, where_clause, _)) = tuple((
tag_no_case("delete"),
delimited(multispace1, tag_no_case("from"), multispace1),
schema_table_reference,
opt(where_clause),
statement_terminator,
))(i)?;
Ok((
remaining_input,
DeleteStatement {
table,
where_clause,
},
))
}
#[cfg(test)]
mod tests {
use super::*;
use column::Column;
use common::{Literal, Operator};
use condition::ConditionBase::*;
use condition::ConditionExpression::*;
use condition::ConditionTree;
use table::Table;
#[test]
fn simple_delete() {
let qstring = "DELETE FROM users;";
let res = deletion(qstring.as_bytes());
assert_eq!(
res.unwrap().1,
DeleteStatement {
table: Table::from("users"),
..Default::default()
}
);
}
#[test]
fn simple_delete_schema() {
let qstring = "DELETE FROM db1.users;";
let res = deletion(qstring.as_bytes());
assert_eq!(
res.unwrap().1,
DeleteStatement {
table: Table::from(("db1", "users")),
..Default::default()
}
);
}
#[test]
fn delete_with_where_clause() {
let qstring = "DELETE FROM users WHERE id = 1;";
let res = deletion(qstring.as_bytes());
let expected_left = Base(Field(Column::from("id")));
let expected_where_cond = Some(ComparisonOp(ConditionTree {
left: Box::new(expected_left),
right: Box::new(Base(Literal(Literal::Integer(1)))),
operator: Operator::Equal,
}));
assert_eq!(
res.unwrap().1,
DeleteStatement {
table: Table::from("users"),
where_clause: expected_where_cond,
..Default::default()
}
);
}
#[test]
fn format_delete() {
let qstring = "DELETE FROM users WHERE id = 1";
let expected = "DELETE FROM users WHERE id = 1";
let res = deletion(qstring.as_bytes());
assert_eq!(format!("{}", res.unwrap().1), expected);
}
}