| // Licensed to the Apache Software Foundation (ASF) under one |
| // or more contributor license agreements. See the NOTICE file |
| // distributed with this work for additional information |
| // regarding copyright ownership. The ASF licenses this file |
| // to you 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::{self, Display, Formatter}; |
| use std::sync::Arc; |
| |
| use datafusion::common::SchemaReference; |
| use datafusion::logical_expr::DropCatalogSchema; |
| use datafusion::sql::TableReference; |
| use pyo3::exceptions::PyValueError; |
| use pyo3::prelude::*; |
| use pyo3::IntoPyObjectExt; |
| |
| use super::logical_node::LogicalNode; |
| use crate::common::df_schema::PyDFSchema; |
| use crate::sql::logical::PyLogicalPlan; |
| |
| #[pyclass( |
| frozen, |
| name = "DropCatalogSchema", |
| module = "datafusion.expr", |
| subclass |
| )] |
| #[derive(Clone)] |
| pub struct PyDropCatalogSchema { |
| drop: DropCatalogSchema, |
| } |
| |
| impl From<PyDropCatalogSchema> for DropCatalogSchema { |
| fn from(drop: PyDropCatalogSchema) -> Self { |
| drop.drop |
| } |
| } |
| |
| impl From<DropCatalogSchema> for PyDropCatalogSchema { |
| fn from(drop: DropCatalogSchema) -> PyDropCatalogSchema { |
| PyDropCatalogSchema { drop } |
| } |
| } |
| |
| impl Display for PyDropCatalogSchema { |
| fn fmt(&self, f: &mut Formatter) -> fmt::Result { |
| write!(f, "DropCatalogSchema") |
| } |
| } |
| |
| fn parse_schema_reference(name: String) -> PyResult<SchemaReference> { |
| match name.into() { |
| TableReference::Bare { table } => Ok(SchemaReference::Bare { schema: table }), |
| TableReference::Partial { schema, table } => Ok(SchemaReference::Full { |
| schema: table, |
| catalog: schema, |
| }), |
| TableReference::Full { |
| catalog: _, |
| schema: _, |
| table: _, |
| } => Err(PyErr::new::<PyValueError, String>( |
| "Invalid schema specifier (has 3 parts)".to_string(), |
| )), |
| } |
| } |
| |
| #[pymethods] |
| impl PyDropCatalogSchema { |
| #[new] |
| fn new(name: String, schema: PyDFSchema, if_exists: bool, cascade: bool) -> PyResult<Self> { |
| let name = parse_schema_reference(name)?; |
| Ok(PyDropCatalogSchema { |
| drop: DropCatalogSchema { |
| name, |
| schema: Arc::new(schema.into()), |
| if_exists, |
| cascade, |
| }, |
| }) |
| } |
| |
| fn name(&self) -> PyResult<String> { |
| Ok(self.drop.name.to_string()) |
| } |
| |
| fn schema(&self) -> PyDFSchema { |
| (*self.drop.schema).clone().into() |
| } |
| |
| fn if_exists(&self) -> PyResult<bool> { |
| Ok(self.drop.if_exists) |
| } |
| |
| fn cascade(&self) -> PyResult<bool> { |
| Ok(self.drop.cascade) |
| } |
| |
| fn __repr__(&self) -> PyResult<String> { |
| Ok(format!("DropCatalogSchema({self})")) |
| } |
| } |
| |
| impl LogicalNode for PyDropCatalogSchema { |
| fn inputs(&self) -> Vec<PyLogicalPlan> { |
| vec![] |
| } |
| |
| fn to_variant<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyAny>> { |
| self.clone().into_bound_py_any(py) |
| } |
| } |