mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-04 20:32:56 +00:00
* wip: global replace Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix compile Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix warnings Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * remove unneeded tests of errors Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix ErrorExt trait implementator Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix warnings Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix format Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix pyo3 tests Signed-off-by: Ruihang Xia <waynestxia@gmail.com> --------- Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
118 lines
3.4 KiB
Rust
118 lines
3.4 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.
|
|
|
|
//! Error of record batch.
|
|
use std::any::Any;
|
|
|
|
use common_error::ext::BoxedError;
|
|
use common_error::prelude::*;
|
|
use datatypes::prelude::ConcreteDataType;
|
|
use snafu::Location;
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|
|
|
|
#[derive(Debug, Snafu)]
|
|
#[snafu(visibility(pub))]
|
|
pub enum Error {
|
|
#[snafu(display("Fail to create datafusion record batch, source: {}", source))]
|
|
NewDfRecordBatch {
|
|
source: datatypes::arrow::error::ArrowError,
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Data types error, source: {}", source))]
|
|
DataTypes {
|
|
#[snafu(backtrace)]
|
|
source: datatypes::error::Error,
|
|
},
|
|
|
|
#[snafu(display("External error, source: {}", source))]
|
|
External {
|
|
#[snafu(backtrace)]
|
|
source: BoxedError,
|
|
},
|
|
|
|
#[snafu(display("Failed to create RecordBatches, reason: {}", reason))]
|
|
CreateRecordBatches { reason: String, location: Location },
|
|
|
|
#[snafu(display("Failed to convert Arrow schema, source: {}", source))]
|
|
SchemaConversion {
|
|
source: datatypes::error::Error,
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Failed to poll stream, source: {}", source))]
|
|
PollStream {
|
|
source: datafusion::error::DataFusionError,
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Fail to format record batch, source: {}", source))]
|
|
Format {
|
|
source: datatypes::arrow::error::ArrowError,
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Failed to init Recordbatch stream, source: {}", source))]
|
|
InitRecordbatchStream {
|
|
source: datafusion_common::DataFusionError,
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display("Column {} not exists in table {}", column_name, table_name))]
|
|
ColumnNotExists {
|
|
column_name: String,
|
|
table_name: String,
|
|
location: Location,
|
|
},
|
|
|
|
#[snafu(display(
|
|
"Failed to cast vector of type '{:?}' to type '{:?}', source: {}",
|
|
from_type,
|
|
to_type,
|
|
source
|
|
))]
|
|
CastVector {
|
|
from_type: ConcreteDataType,
|
|
to_type: ConcreteDataType,
|
|
#[snafu(backtrace)]
|
|
source: datatypes::error::Error,
|
|
},
|
|
}
|
|
|
|
impl ErrorExt for Error {
|
|
fn status_code(&self) -> StatusCode {
|
|
match self {
|
|
Error::NewDfRecordBatch { .. } => StatusCode::InvalidArguments,
|
|
|
|
Error::DataTypes { .. }
|
|
| Error::CreateRecordBatches { .. }
|
|
| Error::PollStream { .. }
|
|
| Error::Format { .. }
|
|
| Error::InitRecordbatchStream { .. }
|
|
| Error::ColumnNotExists { .. } => StatusCode::Internal,
|
|
|
|
Error::External { source } => source.status_code(),
|
|
|
|
Error::SchemaConversion { source, .. } | Error::CastVector { source, .. } => {
|
|
source.status_code()
|
|
}
|
|
}
|
|
}
|
|
|
|
fn as_any(&self) -> &dyn Any {
|
|
self
|
|
}
|
|
}
|