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
use crate::begin_batch::BeginBatch;
use crate::common::{FQName, Identifier, Operand, TtlTimestamp};
use itertools::Itertools;
use std::collections::BTreeMap;
use std::fmt::{Display, Formatter};
#[derive(PartialEq, Debug, Clone)]
pub struct Insert {
pub begin_batch: Option<BeginBatch>,
pub table_name: FQName,
pub columns: Vec<Identifier>,
pub values: InsertValues,
pub using_ttl: Option<TtlTimestamp>,
pub if_not_exists: bool,
}
impl Insert {
pub fn get_value_map(&self) -> BTreeMap<Identifier, &Operand> {
let mut result = BTreeMap::new();
match &self.values {
InsertValues::Values(operands) => {
if self.columns.len() == operands.len() {
for (i, operand) in operands.iter().enumerate() {
result.insert(self.columns[i].clone(), operand);
}
}
}
InsertValues::Json(_) => {}
}
result
}
}
impl Display for Insert {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(
f,
"{}INSERT INTO {} ({}) {}{}{}",
self.begin_batch
.as_ref()
.map_or("".to_string(), |x| x.to_string()),
self.table_name,
self.columns.iter().map(|c| c.to_string()).join(", "),
self.values,
if self.if_not_exists {
" IF NOT EXISTS"
} else {
""
},
self.using_ttl
.as_ref()
.map_or("".to_string(), |x| x.to_string()),
)
}
}
#[derive(PartialEq, Debug, Clone)]
pub enum InsertValues {
Values(Vec<Operand>),
Json(String),
}
impl Display for InsertValues {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
match self {
InsertValues::Values(columns) => {
write!(f, "VALUES ({})", columns.iter().join(", "))
}
InsertValues::Json(text) => {
write!(f, "JSON {}", text)
}
}
}
}