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
#[derive(Clone, Debug, PartialEq)]
pub enum OrderBy {
    Asc,
    Desc,
    Default,
}

impl OrderBy {
    pub fn to_sql(&self) -> &str {
        match self {
            OrderBy::Asc => "asc",
            OrderBy::Desc => "desc",
            OrderBy::Default => "",
        }
    }
}

#[derive(Clone, Debug, PartialEq)]
pub enum ForUpdate {
    Default,
    SkipLocked,
    NoWait,
    No,
}

impl ForUpdate {
    pub fn to_sql(&self) -> &str {
        match self {
            ForUpdate::Default => "for update",
            ForUpdate::SkipLocked => "for update skip locked",
            ForUpdate::NoWait => "for update NoWait",
            ForUpdate::No => "",
        }
    }
}