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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
use nom::multispace; use std::{fmt, str}; use common::{field_value_list, table_reference, Literal}; use condition::ConditionExpression; use keywords::escape_if_keyword; use table::Table; use column::Column; use select::where_clause; #[derive(Clone, Debug, Default, Hash, PartialEq, Serialize, Deserialize)] pub struct UpdateStatement { pub table: Table, pub fields: Vec<(Column, Literal)>, pub where_clause: Option<ConditionExpression>, } impl fmt::Display for UpdateStatement { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "UPDATE {} ", escape_if_keyword(&self.table.name))?; assert!(self.fields.len() > 0); write!( f, "SET {}", self.fields .iter() .map(|&(ref col, ref literal)| format!("{} = {}", col, literal.to_string())) .collect::<Vec<_>>() .join(", ") )?; if let Some(ref where_clause) = self.where_clause { write!(f, " WHERE ")?; write!(f, "{}", where_clause)?; } Ok(()) } } named!(pub updating<&[u8], UpdateStatement>, do_parse!( tag_no_case!("update") >> multispace >> table: table_reference >> multispace >> tag_no_case!("set") >> multispace >> fields: field_value_list >> cond: opt!(where_clause) >> (UpdateStatement { table: table, fields: fields, where_clause: cond, }) ) ); #[cfg(test)] mod tests { use super::*; use column::Column; use table::Table; use common::{Literal, Operator, Real}; use condition::ConditionBase::*; use condition::ConditionExpression::*; use condition::ConditionTree; #[test] fn simple_update() { let qstring = "UPDATE users SET id = 42, name = 'test'"; let res = updating(qstring.as_bytes()); assert_eq!( res.unwrap().1, UpdateStatement { table: Table::from("users"), fields: vec![ (Column::from("id"), 42.into()), (Column::from("name"), "test".into()), ], ..Default::default() } ); } #[test] fn update_with_where_clause() { let qstring = "UPDATE users SET id = 42, name = 'test' WHERE id = 1"; let res = updating(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, UpdateStatement { table: Table::from("users"), fields: vec![ (Column::from("id"), 42.into()), (Column::from("name"), "test".into()), ], where_clause: expected_where_cond, ..Default::default() } ); } #[test] fn format_update_with_where_clause() { let qstring = "UPDATE users SET id = 42, name = 'test' WHERE id = 1"; let expected = "UPDATE users SET id = 42, name = 'test' WHERE id = 1"; let res = updating(qstring.as_bytes()); assert_eq!(format!("{}", res.unwrap().1), expected); } #[test] fn updated_with_neg_float() { let qstring = "UPDATE `stories` SET `hotness` = -19216.5479744 WHERE `stories`.`id` = ?"; let res = updating(qstring.as_bytes()); let expected_left = Base(Field(Column::from("stories.id"))); let expected_where_cond = Some(ComparisonOp(ConditionTree { left: Box::new(expected_left), right: Box::new(Base(Literal(Literal::Placeholder))), operator: Operator::Equal, })); assert_eq!( res.unwrap().1, UpdateStatement { table: Table::from("stories"), fields: vec![ ( Column::from("hotness"), Literal::FixedPoint(Real { integral: -19216, fractional: 5479744, }), ), ], where_clause: expected_where_cond, ..Default::default() } ); } }