mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-11 07:42:54 +00:00
refactor: split some convert function into `sql-common` crates Signed-off-by: Yihai Lin <yihai-lin@foxmail.com>
399 lines
11 KiB
Rust
399 lines
11 KiB
Rust
// 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::any::Any;
|
|
|
|
use common_error::ext::ErrorExt;
|
|
use common_error::status_code::StatusCode;
|
|
use common_macro::stack_trace_debug;
|
|
use datafusion_common::DataFusionError;
|
|
use datatypes::prelude::{ConcreteDataType, Value};
|
|
use snafu::{Location, Snafu};
|
|
use sqlparser::ast::Ident;
|
|
use sqlparser::parser::ParserError;
|
|
|
|
use crate::ast::Expr;
|
|
use crate::parsers::error::TQLError;
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|
|
|
|
/// SQL parser errors.
|
|
// Now the error in parser does not contain backtrace to avoid generating backtrace
|
|
// every time the parser parses an invalid SQL.
|
|
#[derive(Snafu)]
|
|
#[snafu(visibility(pub))]
|
|
#[stack_trace_debug]
|
|
pub enum Error {
|
|
#[snafu(display("SQL statement is not supported, keyword: {}", keyword))]
|
|
Unsupported {
|
|
keyword: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display(
|
|
"Unexpected token while parsing SQL statement, expected: '{}', found: {}",
|
|
expected,
|
|
actual,
|
|
))]
|
|
Unexpected {
|
|
expected: String,
|
|
actual: String,
|
|
#[snafu(source)]
|
|
error: ParserError,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
// Syntax error from sql parser.
|
|
#[snafu(display("Invalid SQL syntax"))]
|
|
Syntax {
|
|
#[snafu(source)]
|
|
error: ParserError,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
// Syntax error from tql parser.
|
|
#[snafu(display("Invalid TQL syntax"))]
|
|
TQLSyntax {
|
|
#[snafu(source)]
|
|
error: TQLError,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Missing time index constraint"))]
|
|
MissingTimeIndex {},
|
|
|
|
#[snafu(display("Invalid time index: {}", msg))]
|
|
InvalidTimeIndex {
|
|
msg: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Invalid SQL, error: {}", msg))]
|
|
InvalidSql {
|
|
msg: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display(
|
|
"Unexpected token while parsing SQL statement, expected: '{}', found: {}",
|
|
expected,
|
|
actual,
|
|
))]
|
|
UnexpectedToken {
|
|
expected: String,
|
|
actual: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Invalid column option, column name: {}, error: {}", name, msg))]
|
|
InvalidColumnOption {
|
|
name: String,
|
|
msg: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("SQL data type not supported yet: {:?}", t))]
|
|
SqlTypeNotSupported {
|
|
t: crate::ast::DataType,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
#[snafu(display("ConcreteDataType not supported yet: {:?}", t))]
|
|
ConcreteTypeNotSupported {
|
|
t: ConcreteDataType,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Failed to parse value: {}", msg))]
|
|
ParseSqlValue {
|
|
msg: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display(
|
|
"Column {} expect type: {:?}, actual: {:?}",
|
|
column_name,
|
|
expect,
|
|
actual,
|
|
))]
|
|
ColumnTypeMismatch {
|
|
column_name: String,
|
|
expect: ConcreteDataType,
|
|
actual: ConcreteDataType,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Invalid database name: {}", name))]
|
|
InvalidDatabaseName {
|
|
name: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Invalid interval provided: {}", reason))]
|
|
InvalidInterval {
|
|
reason: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Unrecognized database option key: {}", key))]
|
|
InvalidDatabaseOption {
|
|
key: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Invalid table name: {}", name))]
|
|
InvalidTableName {
|
|
name: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Invalid flow name: {}", name))]
|
|
InvalidFlowName {
|
|
name: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[cfg(feature = "enterprise")]
|
|
#[snafu(display("Invalid trigger name: {}", name))]
|
|
InvalidTriggerName {
|
|
name: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Invalid flow query: {}", reason))]
|
|
InvalidFlowQuery {
|
|
reason: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Invalid default constraint, column: {}", column))]
|
|
InvalidDefault {
|
|
column: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
source: datatypes::error::Error,
|
|
},
|
|
|
|
#[snafu(display("Unrecognized table option key: {}", key))]
|
|
InvalidTableOption {
|
|
key: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Unrecognized table option key: {}, value: {}", key, value))]
|
|
InvalidTableOptionValue {
|
|
key: Ident,
|
|
value: Expr,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Failed to serialize column default constraint"))]
|
|
SerializeColumnDefaultConstraint {
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
source: datatypes::error::Error,
|
|
},
|
|
|
|
#[snafu(display("Failed to convert data type to gRPC data type defined in proto"))]
|
|
ConvertToGrpcDataType {
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
source: api::error::Error,
|
|
},
|
|
|
|
#[snafu(display("Unable to convert statement {} to DataFusion statement", statement))]
|
|
ConvertToDfStatement {
|
|
statement: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Unable to convert value {} to sql value", value))]
|
|
ConvertValue {
|
|
value: Value,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Failed to convert to logical TQL expression"))]
|
|
ConvertToLogicalExpression {
|
|
#[snafu(source)]
|
|
error: DataFusionError,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Failed to simplify TQL expression"))]
|
|
Simplification {
|
|
#[snafu(source)]
|
|
error: DataFusionError,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display(
|
|
"Permission denied while operating catalog {} from current catalog {}",
|
|
target,
|
|
current
|
|
))]
|
|
PermissionDenied {
|
|
target: String,
|
|
current: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Failed to set fulltext option"))]
|
|
SetFulltextOption {
|
|
source: datatypes::error::Error,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Failed to set SKIPPING index option"))]
|
|
SetSkippingIndexOption {
|
|
source: datatypes::error::Error,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display(
|
|
"Invalid partition number: {}, should be in range [2, 65536]",
|
|
partition_num
|
|
))]
|
|
InvalidPartitionNumber {
|
|
partition_num: u32,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[cfg(feature = "enterprise")]
|
|
#[snafu(display("Missing `{}` clause", name))]
|
|
MissingClause {
|
|
name: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[cfg(feature = "enterprise")]
|
|
#[snafu(display("Unrecognized trigger webhook option key: {}", key))]
|
|
InvalidTriggerWebhookOption {
|
|
key: String,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[cfg(feature = "enterprise")]
|
|
#[snafu(display("The execution interval cannot be negative"))]
|
|
NegativeInterval {
|
|
#[snafu(source)]
|
|
error: std::num::TryFromIntError,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[cfg(feature = "enterprise")]
|
|
#[snafu(display("Must specify at least one notify channel"))]
|
|
MissingNotifyChannel {
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Sql common error"))]
|
|
SqlCommon {
|
|
source: common_sql::error::Error,
|
|
#[snafu(implicit)]
|
|
location: Location,
|
|
},
|
|
}
|
|
|
|
impl ErrorExt for Error {
|
|
fn status_code(&self) -> StatusCode {
|
|
use Error::*;
|
|
|
|
match self {
|
|
Unsupported { .. } => StatusCode::Unsupported,
|
|
Unexpected { .. }
|
|
| Syntax { .. }
|
|
| TQLSyntax { .. }
|
|
| MissingTimeIndex { .. }
|
|
| InvalidTimeIndex { .. }
|
|
| InvalidSql { .. }
|
|
| ParseSqlValue { .. }
|
|
| SqlTypeNotSupported { .. }
|
|
| ConcreteTypeNotSupported { .. }
|
|
| UnexpectedToken { .. }
|
|
| InvalidDefault { .. } => StatusCode::InvalidSyntax,
|
|
|
|
#[cfg(feature = "enterprise")]
|
|
MissingClause { .. } | MissingNotifyChannel { .. } => StatusCode::InvalidSyntax,
|
|
|
|
InvalidColumnOption { .. }
|
|
| InvalidTableOptionValue { .. }
|
|
| InvalidDatabaseName { .. }
|
|
| InvalidDatabaseOption { .. }
|
|
| ColumnTypeMismatch { .. }
|
|
| InvalidTableName { .. }
|
|
| InvalidFlowName { .. }
|
|
| InvalidFlowQuery { .. }
|
|
| InvalidTableOption { .. }
|
|
| ConvertToLogicalExpression { .. }
|
|
| Simplification { .. }
|
|
| InvalidInterval { .. }
|
|
| InvalidPartitionNumber { .. } => StatusCode::InvalidArguments,
|
|
|
|
#[cfg(feature = "enterprise")]
|
|
InvalidTriggerName { .. } => StatusCode::InvalidArguments,
|
|
|
|
#[cfg(feature = "enterprise")]
|
|
InvalidTriggerWebhookOption { .. } | NegativeInterval { .. } => {
|
|
StatusCode::InvalidArguments
|
|
}
|
|
|
|
SerializeColumnDefaultConstraint { source, .. } => source.status_code(),
|
|
ConvertToGrpcDataType { source, .. } => source.status_code(),
|
|
SqlCommon { source, .. } => source.status_code(),
|
|
ConvertToDfStatement { .. } => StatusCode::Internal,
|
|
ConvertValue { .. } => StatusCode::Unsupported,
|
|
|
|
PermissionDenied { .. } => StatusCode::PermissionDenied,
|
|
SetFulltextOption { .. } | SetSkippingIndexOption { .. } => StatusCode::Unexpected,
|
|
}
|
|
}
|
|
|
|
fn as_any(&self) -> &dyn Any {
|
|
self
|
|
}
|
|
}
|