tests_fuzz/validator/
column.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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
// 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 common_telemetry::debug;
use datatypes::data_type::DataType;
use snafu::{ensure, ResultExt};
use sqlx::MySqlPool;

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

#[derive(Debug, sqlx::FromRow)]
pub struct ColumnEntry {
    pub table_schema: String,
    pub table_name: String,
    pub column_name: String,
    pub data_type: String,
    pub semantic_type: String,
    pub column_default: Option<String>,
    pub is_nullable: String,
}

fn is_nullable(str: &str) -> bool {
    str.to_uppercase() == "YES"
}

enum SemanticType {
    Timestamp,
    Field,
    Tag,
}

fn semantic_type(str: &str) -> Option<SemanticType> {
    match str {
        "TIMESTAMP" => Some(SemanticType::Timestamp),
        "FIELD" => Some(SemanticType::Field),
        "TAG" => Some(SemanticType::Tag),
        _ => None,
    }
}

impl PartialEq<Column> for ColumnEntry {
    fn eq(&self, other: &Column) -> bool {
        // Checks `table_name`
        if other.name.value != self.column_name {
            debug!(
                "expected name: {}, got: {}",
                other.name.value, self.column_name
            );
            return false;
        }
        // Checks `data_type`
        if other.column_type.name() != self.data_type {
            debug!(
                "expected column_type: {}, got: {}",
                other.column_type.name(),
                self.data_type
            );
            return false;
        }
        // Checks `column_default`
        match &self.column_default {
            Some(value) => {
                let default_value_opt = other.options.iter().find(|opt| {
                    matches!(
                        opt,
                        ColumnOption::DefaultFn(_) | ColumnOption::DefaultValue(_)
                    )
                });
                if default_value_opt.is_none() {
                    debug!("default value options is not found");
                    return false;
                }
                let default_value = match default_value_opt.unwrap() {
                    ColumnOption::DefaultValue(v) => v.to_string(),
                    ColumnOption::DefaultFn(f) => f.to_string(),
                    _ => unreachable!(),
                };
                if &default_value != value {
                    debug!("expected default value: {default_value}, got: {value}");
                    return false;
                }
            }
            None => {
                if other.options.iter().any(|opt| {
                    matches!(
                        opt,
                        ColumnOption::DefaultFn(_) | ColumnOption::DefaultValue(_)
                    )
                }) {
                    return false;
                }
            }
        };
        // Checks `is_nullable`
        if is_nullable(&self.is_nullable) {
            // Null is the default value. Therefore, we only ensure there is no `ColumnOption::NotNull` option.
            if other
                .options
                .iter()
                .any(|opt| matches!(opt, ColumnOption::NotNull))
            {
                debug!("ColumnOption::NotNull is found");
                return false;
            }
        } else {
            // `ColumnOption::TimeIndex` imply means the field is not nullable.
            if !other
                .options
                .iter()
                .any(|opt| matches!(opt, ColumnOption::NotNull | ColumnOption::TimeIndex))
            {
                debug!("ColumnOption::NotNull or ColumnOption::TimeIndex is not found");
                return false;
            }
        }
        //TODO: Checks `semantic_type`
        match semantic_type(&self.semantic_type) {
            Some(SemanticType::Tag) => {
                if !other
                    .options
                    .iter()
                    .any(|opt| matches!(opt, ColumnOption::PrimaryKey))
                {
                    debug!("ColumnOption::PrimaryKey is not found");
                    return false;
                }
            }
            Some(SemanticType::Field) => {
                if other
                    .options
                    .iter()
                    .any(|opt| matches!(opt, ColumnOption::PrimaryKey | ColumnOption::TimeIndex))
                {
                    debug!("unexpected ColumnOption::PrimaryKey or ColumnOption::TimeIndex");
                    return false;
                }
            }
            Some(SemanticType::Timestamp) => {
                if !other
                    .options
                    .iter()
                    .any(|opt| matches!(opt, ColumnOption::TimeIndex))
                {
                    debug!("ColumnOption::TimeIndex is not found");
                    return false;
                }
            }
            None => {
                debug!("unknown semantic type: {}", self.semantic_type);
                return false;
            }
        };

        true
    }
}

/// Asserts [&[ColumnEntry]] is equal to [&[Column]]
pub fn assert_eq(fetched_columns: &[ColumnEntry], columns: &[Column]) -> Result<()> {
    ensure!(
        columns.len() == fetched_columns.len(),
        error::AssertSnafu {
            reason: format!(
                "Expected columns length: {}, got: {}",
                columns.len(),
                fetched_columns.len(),
            )
        }
    );

    for (idx, fetched) in fetched_columns.iter().enumerate() {
        ensure!(
            fetched == &columns[idx],
            error::AssertSnafu {
                reason: format!(
                    "ColumnEntry {fetched:?} is not equal to Column {:?}",
                    columns[idx]
                )
            }
        );
    }

    Ok(())
}

/// Returns all [ColumnEntry] of the `table_name` from `information_schema`.
pub async fn fetch_columns(
    db: &MySqlPool,
    schema_name: Ident,
    table_name: Ident,
) -> Result<Vec<ColumnEntry>> {
    let sql = "SELECT table_schema, table_name, column_name, greptime_data_type as data_type, semantic_type, column_default, is_nullable FROM information_schema.columns WHERE table_schema = ? AND table_name = ?";
    sqlx::query_as::<_, ColumnEntry>(sql)
        .bind(schema_name.value.to_string())
        .bind(table_name.value.to_string())
        .fetch_all(db)
        .await
        .context(error::ExecuteQuerySnafu { sql })
}

#[cfg(test)]
mod tests {
    use datatypes::data_type::{ConcreteDataType, DataType};
    use datatypes::value::Value;

    use super::ColumnEntry;
    use crate::ir::create_expr::ColumnOption;
    use crate::ir::{Column, Ident};

    #[test]
    fn test_column_eq() {
        common_telemetry::init_default_ut_logging();
        let column_entry = ColumnEntry {
            table_schema: String::new(),
            table_name: String::new(),
            column_name: "test".to_string(),
            data_type: ConcreteDataType::int8_datatype().name(),
            semantic_type: "FIELD".to_string(),
            column_default: None,
            is_nullable: "Yes".to_string(),
        };
        // Naive
        let column = Column {
            name: Ident::new("test"),
            column_type: ConcreteDataType::int8_datatype(),
            options: vec![],
        };
        assert!(column_entry == column);
        // With quote
        let column = Column {
            name: Ident::with_quote('\'', "test"),
            column_type: ConcreteDataType::int8_datatype(),
            options: vec![],
        };
        assert!(column_entry == column);
        // With default value
        let column_entry = ColumnEntry {
            table_schema: String::new(),
            table_name: String::new(),
            column_name: "test".to_string(),
            data_type: ConcreteDataType::int8_datatype().to_string(),
            semantic_type: "FIELD".to_string(),
            column_default: Some("1".to_string()),
            is_nullable: "Yes".to_string(),
        };
        let column = Column {
            name: Ident::with_quote('\'', "test"),
            column_type: ConcreteDataType::int8_datatype(),
            options: vec![ColumnOption::DefaultValue(Value::from(1))],
        };
        assert!(column_entry == column);
        // With default function
        let column_entry = ColumnEntry {
            table_schema: String::new(),
            table_name: String::new(),
            column_name: "test".to_string(),
            data_type: ConcreteDataType::int8_datatype().to_string(),
            semantic_type: "FIELD".to_string(),
            column_default: Some("Hello()".to_string()),
            is_nullable: "Yes".to_string(),
        };
        let column = Column {
            name: Ident::with_quote('\'', "test"),
            column_type: ConcreteDataType::int8_datatype(),
            options: vec![ColumnOption::DefaultFn("Hello()".to_string())],
        };
        assert!(column_entry == column);
    }
}