tests_fuzz/ir/
alter_expr.rs

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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
// Copyright 2023 Greptime Team
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use std::fmt::Display;
use std::str::FromStr;

use common_base::readable_size::ReadableSize;
use common_query::AddColumnLocation;
use common_time::{Duration, FOREVER, INSTANT};
use derive_builder::Builder;
use serde::{Deserialize, Serialize};
use store_api::mito_engine_options::{
    APPEND_MODE_KEY, COMPACTION_TYPE, TTL_KEY, TWCS_MAX_ACTIVE_WINDOW_FILES,
    TWCS_MAX_ACTIVE_WINDOW_RUNS, TWCS_MAX_INACTIVE_WINDOW_FILES, TWCS_MAX_INACTIVE_WINDOW_RUNS,
    TWCS_MAX_OUTPUT_FILE_SIZE, TWCS_TIME_WINDOW,
};
use strum::EnumIter;

use crate::error::{self, Result};
use crate::ir::{Column, Ident};

#[derive(Debug, Builder, Clone, Serialize, Deserialize)]
pub struct AlterTableExpr {
    pub table_name: Ident,
    pub alter_kinds: AlterTableOperation,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum AlterTableOperation {
    /// `ADD [ COLUMN ] <column_def> [location]`
    AddColumn {
        column: Column,
        location: Option<AddColumnLocation>,
    },
    /// `DROP COLUMN <name>`
    DropColumn { name: Ident },
    /// `RENAME <new_table_name>`
    RenameTable { new_table_name: Ident },
    /// `MODIFY COLUMN <column_name> <column_type>`
    ModifyDataType { column: Column },
    /// `SET <table attrs key> = <table attr value>`
    SetTableOptions { options: Vec<AlterTableOption> },
    /// `UNSET <table attrs key>`
    UnsetTableOptions { keys: Vec<String> },
}

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, Default)]
pub enum Ttl {
    Duration(Duration),
    Instant,
    #[default]
    Forever,
}

impl Display for Ttl {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Ttl::Duration(d) => write!(f, "{}", d),
            Ttl::Instant => write!(f, "{}", INSTANT),
            Ttl::Forever => write!(f, "{}", FOREVER),
        }
    }
}

#[derive(Debug, EnumIter, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum AlterTableOption {
    Ttl(Ttl),
    TwcsTimeWindow(Duration),
    TwcsMaxOutputFileSize(ReadableSize),
    TwcsMaxInactiveWindowFiles(u64),
    TwcsMaxActiveWindowFiles(u64),
    TwcsMaxInactiveWindowRuns(u64),
    TwcsMaxActiveWindowRuns(u64),
}

impl AlterTableOption {
    pub fn key(&self) -> &str {
        match self {
            AlterTableOption::Ttl(_) => TTL_KEY,
            AlterTableOption::TwcsTimeWindow(_) => TWCS_TIME_WINDOW,
            AlterTableOption::TwcsMaxOutputFileSize(_) => TWCS_MAX_OUTPUT_FILE_SIZE,
            AlterTableOption::TwcsMaxInactiveWindowFiles(_) => TWCS_MAX_INACTIVE_WINDOW_FILES,
            AlterTableOption::TwcsMaxActiveWindowFiles(_) => TWCS_MAX_ACTIVE_WINDOW_FILES,
            AlterTableOption::TwcsMaxInactiveWindowRuns(_) => TWCS_MAX_INACTIVE_WINDOW_RUNS,
            AlterTableOption::TwcsMaxActiveWindowRuns(_) => TWCS_MAX_ACTIVE_WINDOW_RUNS,
        }
    }

    /// Parses the AlterTableOption from a key-value pair
    fn parse_kv(key: &str, value: &str) -> Result<Self> {
        match key {
            TTL_KEY => {
                let ttl = if value.to_lowercase() == INSTANT {
                    Ttl::Instant
                } else if value.to_lowercase() == FOREVER {
                    Ttl::Forever
                } else {
                    let duration = humantime::parse_duration(value).unwrap();
                    Ttl::Duration(duration.into())
                };
                Ok(AlterTableOption::Ttl(ttl))
            }
            TWCS_MAX_ACTIVE_WINDOW_RUNS => {
                let runs = value.parse().unwrap();
                Ok(AlterTableOption::TwcsMaxActiveWindowRuns(runs))
            }
            TWCS_MAX_ACTIVE_WINDOW_FILES => {
                let files = value.parse().unwrap();
                Ok(AlterTableOption::TwcsMaxActiveWindowFiles(files))
            }
            TWCS_MAX_INACTIVE_WINDOW_RUNS => {
                let runs = value.parse().unwrap();
                Ok(AlterTableOption::TwcsMaxInactiveWindowRuns(runs))
            }
            TWCS_MAX_INACTIVE_WINDOW_FILES => {
                let files = value.parse().unwrap();
                Ok(AlterTableOption::TwcsMaxInactiveWindowFiles(files))
            }
            TWCS_MAX_OUTPUT_FILE_SIZE => {
                // may be "1M" instead of "1 MiB"
                let value = if value.ends_with("B") {
                    value.to_string()
                } else {
                    format!("{}B", value)
                };
                let size = ReadableSize::from_str(&value).unwrap();
                Ok(AlterTableOption::TwcsMaxOutputFileSize(size))
            }
            TWCS_TIME_WINDOW => {
                let time = humantime::parse_duration(value).unwrap();
                Ok(AlterTableOption::TwcsTimeWindow(time.into()))
            }
            _ => error::UnexpectedSnafu {
                violated: format!("Unknown table option key: {}", key),
            }
            .fail(),
        }
    }

    /// Parses the AlterTableOption from comma-separated string
    pub fn parse_kv_pairs(option_string: &str) -> Result<Vec<Self>> {
        let mut options = vec![];
        for pair in option_string.split(',') {
            let pair = pair.trim();
            let (key, value) = pair.split_once('=').unwrap();
            let key = key.trim().replace("\'", "");
            let value = value.trim().replace('\'', "");
            // Currently we have only one compaction type, so we ignore it
            // Cautious: COMPACTION_TYPE may be kept even if there are no compaction options enabled
            if key == COMPACTION_TYPE || key == APPEND_MODE_KEY {
                continue;
            } else {
                let option = AlterTableOption::parse_kv(&key, &value)?;
                options.push(option);
            }
        }
        Ok(options)
    }
}

impl Display for AlterTableOption {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            AlterTableOption::Ttl(d) => write!(f, "'{}' = '{}'", TTL_KEY, d),
            AlterTableOption::TwcsTimeWindow(d) => write!(f, "'{}' = '{}'", TWCS_TIME_WINDOW, d),
            AlterTableOption::TwcsMaxOutputFileSize(s) => {
                // Caution: to_string loses precision for ReadableSize
                write!(f, "'{}' = '{}'", TWCS_MAX_OUTPUT_FILE_SIZE, s)
            }
            AlterTableOption::TwcsMaxInactiveWindowFiles(u) => {
                write!(f, "'{}' = '{}'", TWCS_MAX_INACTIVE_WINDOW_FILES, u)
            }
            AlterTableOption::TwcsMaxActiveWindowFiles(u) => {
                write!(f, "'{}' = '{}'", TWCS_MAX_ACTIVE_WINDOW_FILES, u)
            }
            AlterTableOption::TwcsMaxInactiveWindowRuns(u) => {
                write!(f, "'{}' = '{}'", TWCS_MAX_INACTIVE_WINDOW_RUNS, u)
            }
            AlterTableOption::TwcsMaxActiveWindowRuns(u) => {
                write!(f, "'{}' = '{}'", TWCS_MAX_ACTIVE_WINDOW_RUNS, u)
            }
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_parse_kv_pairs() {
        let option_string =
            "compaction.twcs.max_output_file_size = '1M', compaction.type = 'twcs', ttl = 'forever'";
        let options = AlterTableOption::parse_kv_pairs(option_string).unwrap();
        assert_eq!(options.len(), 2);
        assert_eq!(
            options,
            vec![
                AlterTableOption::TwcsMaxOutputFileSize(ReadableSize::from_str("1MB").unwrap()),
                AlterTableOption::Ttl(Ttl::Forever),
            ]
        );

        let option_string = "compaction.twcs.max_active_window_files = '5030469694939972912',
  compaction.twcs.max_active_window_runs = '8361168990283879099',
  compaction.twcs.max_inactive_window_files = '6028716566907830876',
  compaction.twcs.max_inactive_window_runs = '10622283085591494074',
  compaction.twcs.max_output_file_size = '15686.4PiB',
  compaction.twcs.time_window = '2061999256ms',
  compaction.type = 'twcs',
  ttl = '1month 3days 15h 49m 8s 279ms'";
        let options = AlterTableOption::parse_kv_pairs(option_string).unwrap();
        assert_eq!(options.len(), 7);
        let expected = vec![
            AlterTableOption::TwcsMaxActiveWindowFiles(5030469694939972912),
            AlterTableOption::TwcsMaxActiveWindowRuns(8361168990283879099),
            AlterTableOption::TwcsMaxInactiveWindowFiles(6028716566907830876),
            AlterTableOption::TwcsMaxInactiveWindowRuns(10622283085591494074),
            AlterTableOption::TwcsMaxOutputFileSize(ReadableSize::from_str("15686.4PiB").unwrap()),
            AlterTableOption::TwcsTimeWindow(Duration::new_nanosecond(2_061_999_256_000_000)),
            AlterTableOption::Ttl(Ttl::Duration(Duration::new_millisecond(
                // A month is 2_630_016 seconds
                2_630_016 * 1000
                    + 3 * 24 * 60 * 60 * 1000
                    + 15 * 60 * 60 * 1000
                    + 49 * 60 * 1000
                    + 8 * 1000
                    + 279,
            ))),
        ];
        assert_eq!(options, expected);
    }
}