forked from apache/datafusion
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'apache/main' into dev/xinli/date_part
- Loading branch information
Showing
40 changed files
with
987 additions
and
569 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,352 @@ | ||
// 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. | ||
|
||
//! [`MemoryCatalogProvider`], [`MemoryCatalogProviderList`]: In-memory | ||
//! implementations of [`CatalogProviderList`] and [`CatalogProvider`]. | ||
use crate::catalog::schema::SchemaProvider; | ||
use crate::catalog::{CatalogProvider, CatalogProviderList}; | ||
use crate::datasource::TableProvider; | ||
use async_trait::async_trait; | ||
use dashmap::DashMap; | ||
use datafusion_common::{exec_err, DataFusionError}; | ||
use std::any::Any; | ||
use std::sync::Arc; | ||
|
||
/// Simple in-memory list of catalogs | ||
pub struct MemoryCatalogProviderList { | ||
/// Collection of catalogs containing schemas and ultimately TableProviders | ||
pub catalogs: DashMap<String, Arc<dyn CatalogProvider>>, | ||
} | ||
|
||
impl MemoryCatalogProviderList { | ||
/// Instantiates a new `MemoryCatalogProviderList` with an empty collection of catalogs | ||
pub fn new() -> Self { | ||
Self { | ||
catalogs: DashMap::new(), | ||
} | ||
} | ||
} | ||
|
||
impl Default for MemoryCatalogProviderList { | ||
fn default() -> Self { | ||
Self::new() | ||
} | ||
} | ||
|
||
impl CatalogProviderList for MemoryCatalogProviderList { | ||
fn as_any(&self) -> &dyn Any { | ||
self | ||
} | ||
|
||
fn register_catalog( | ||
&self, | ||
name: String, | ||
catalog: Arc<dyn CatalogProvider>, | ||
) -> Option<Arc<dyn CatalogProvider>> { | ||
self.catalogs.insert(name, catalog) | ||
} | ||
|
||
fn catalog_names(&self) -> Vec<String> { | ||
self.catalogs.iter().map(|c| c.key().clone()).collect() | ||
} | ||
|
||
fn catalog(&self, name: &str) -> Option<Arc<dyn CatalogProvider>> { | ||
self.catalogs.get(name).map(|c| c.value().clone()) | ||
} | ||
} | ||
|
||
/// Simple in-memory implementation of a catalog. | ||
pub struct MemoryCatalogProvider { | ||
schemas: DashMap<String, Arc<dyn SchemaProvider>>, | ||
} | ||
|
||
impl MemoryCatalogProvider { | ||
/// Instantiates a new MemoryCatalogProvider with an empty collection of schemas. | ||
pub fn new() -> Self { | ||
Self { | ||
schemas: DashMap::new(), | ||
} | ||
} | ||
} | ||
|
||
impl Default for MemoryCatalogProvider { | ||
fn default() -> Self { | ||
Self::new() | ||
} | ||
} | ||
|
||
impl CatalogProvider for MemoryCatalogProvider { | ||
fn as_any(&self) -> &dyn Any { | ||
self | ||
} | ||
|
||
fn schema_names(&self) -> Vec<String> { | ||
self.schemas.iter().map(|s| s.key().clone()).collect() | ||
} | ||
|
||
fn schema(&self, name: &str) -> Option<Arc<dyn SchemaProvider>> { | ||
self.schemas.get(name).map(|s| s.value().clone()) | ||
} | ||
|
||
fn register_schema( | ||
&self, | ||
name: &str, | ||
schema: Arc<dyn SchemaProvider>, | ||
) -> datafusion_common::Result<Option<Arc<dyn SchemaProvider>>> { | ||
Ok(self.schemas.insert(name.into(), schema)) | ||
} | ||
|
||
fn deregister_schema( | ||
&self, | ||
name: &str, | ||
cascade: bool, | ||
) -> datafusion_common::Result<Option<Arc<dyn SchemaProvider>>> { | ||
if let Some(schema) = self.schema(name) { | ||
let table_names = schema.table_names(); | ||
match (table_names.is_empty(), cascade) { | ||
(true, _) | (false, true) => { | ||
let (_, removed) = self.schemas.remove(name).unwrap(); | ||
Ok(Some(removed)) | ||
} | ||
(false, false) => exec_err!( | ||
"Cannot drop schema {} because other tables depend on it: {}", | ||
name, | ||
itertools::join(table_names.iter(), ", ") | ||
), | ||
} | ||
} else { | ||
Ok(None) | ||
} | ||
} | ||
} | ||
|
||
/// Simple in-memory implementation of a schema. | ||
pub struct MemorySchemaProvider { | ||
tables: DashMap<String, Arc<dyn TableProvider>>, | ||
} | ||
|
||
impl MemorySchemaProvider { | ||
/// Instantiates a new MemorySchemaProvider with an empty collection of tables. | ||
pub fn new() -> Self { | ||
Self { | ||
tables: DashMap::new(), | ||
} | ||
} | ||
} | ||
|
||
impl Default for MemorySchemaProvider { | ||
fn default() -> Self { | ||
Self::new() | ||
} | ||
} | ||
|
||
#[async_trait] | ||
impl SchemaProvider for MemorySchemaProvider { | ||
fn as_any(&self) -> &dyn Any { | ||
self | ||
} | ||
|
||
fn table_names(&self) -> Vec<String> { | ||
self.tables | ||
.iter() | ||
.map(|table| table.key().clone()) | ||
.collect() | ||
} | ||
|
||
async fn table( | ||
&self, | ||
name: &str, | ||
) -> datafusion_common::Result<Option<Arc<dyn TableProvider>>, DataFusionError> { | ||
Ok(self.tables.get(name).map(|table| table.value().clone())) | ||
} | ||
|
||
fn register_table( | ||
&self, | ||
name: String, | ||
table: Arc<dyn TableProvider>, | ||
) -> datafusion_common::Result<Option<Arc<dyn TableProvider>>> { | ||
if self.table_exist(name.as_str()) { | ||
return exec_err!("The table {name} already exists"); | ||
} | ||
Ok(self.tables.insert(name, table)) | ||
} | ||
|
||
fn deregister_table( | ||
&self, | ||
name: &str, | ||
) -> datafusion_common::Result<Option<Arc<dyn TableProvider>>> { | ||
Ok(self.tables.remove(name).map(|(_, table)| table)) | ||
} | ||
|
||
fn table_exist(&self, name: &str) -> bool { | ||
self.tables.contains_key(name) | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod test { | ||
use super::*; | ||
use crate::catalog::schema::{MemorySchemaProvider, SchemaProvider}; | ||
use crate::catalog::CatalogProvider; | ||
use crate::datasource::empty::EmptyTable; | ||
use crate::datasource::listing::{ListingTable, ListingTableConfig, ListingTableUrl}; | ||
use crate::datasource::TableProvider; | ||
use crate::prelude::SessionContext; | ||
use arrow_schema::Schema; | ||
use datafusion_common::assert_batches_eq; | ||
use std::any::Any; | ||
use std::sync::Arc; | ||
|
||
#[test] | ||
fn memory_catalog_dereg_nonempty_schema() { | ||
let cat = Arc::new(MemoryCatalogProvider::new()) as Arc<dyn CatalogProvider>; | ||
|
||
let schema = Arc::new(MemorySchemaProvider::new()) as Arc<dyn SchemaProvider>; | ||
let test_table = Arc::new(EmptyTable::new(Arc::new(Schema::empty()))) | ||
as Arc<dyn TableProvider>; | ||
schema.register_table("t".into(), test_table).unwrap(); | ||
|
||
cat.register_schema("foo", schema.clone()).unwrap(); | ||
|
||
assert!( | ||
cat.deregister_schema("foo", false).is_err(), | ||
"dropping empty schema without cascade should error" | ||
); | ||
assert!(cat.deregister_schema("foo", true).unwrap().is_some()); | ||
} | ||
|
||
#[test] | ||
fn memory_catalog_dereg_empty_schema() { | ||
let cat = Arc::new(MemoryCatalogProvider::new()) as Arc<dyn CatalogProvider>; | ||
|
||
let schema = Arc::new(MemorySchemaProvider::new()) as Arc<dyn SchemaProvider>; | ||
cat.register_schema("foo", schema).unwrap(); | ||
|
||
assert!(cat.deregister_schema("foo", false).unwrap().is_some()); | ||
} | ||
|
||
#[test] | ||
fn memory_catalog_dereg_missing() { | ||
let cat = Arc::new(MemoryCatalogProvider::new()) as Arc<dyn CatalogProvider>; | ||
assert!(cat.deregister_schema("foo", false).unwrap().is_none()); | ||
} | ||
|
||
#[test] | ||
fn default_register_schema_not_supported() { | ||
// mimic a new CatalogProvider and ensure it does not support registering schemas | ||
struct TestProvider {} | ||
impl CatalogProvider for TestProvider { | ||
fn as_any(&self) -> &dyn Any { | ||
self | ||
} | ||
|
||
fn schema_names(&self) -> Vec<String> { | ||
unimplemented!() | ||
} | ||
|
||
fn schema(&self, _name: &str) -> Option<Arc<dyn SchemaProvider>> { | ||
unimplemented!() | ||
} | ||
} | ||
|
||
let schema = Arc::new(MemorySchemaProvider::new()) as Arc<dyn SchemaProvider>; | ||
let catalog = Arc::new(TestProvider {}); | ||
|
||
match catalog.register_schema("foo", schema) { | ||
Ok(_) => panic!("unexpected OK"), | ||
Err(e) => assert_eq!(e.strip_backtrace(), "This feature is not implemented: Registering new schemas is not supported"), | ||
}; | ||
} | ||
|
||
#[tokio::test] | ||
async fn test_mem_provider() { | ||
let provider = MemorySchemaProvider::new(); | ||
let table_name = "test_table_exist"; | ||
assert!(!provider.table_exist(table_name)); | ||
assert!(provider.deregister_table(table_name).unwrap().is_none()); | ||
let test_table = EmptyTable::new(Arc::new(Schema::empty())); | ||
// register table successfully | ||
assert!(provider | ||
.register_table(table_name.to_string(), Arc::new(test_table)) | ||
.unwrap() | ||
.is_none()); | ||
assert!(provider.table_exist(table_name)); | ||
let other_table = EmptyTable::new(Arc::new(Schema::empty())); | ||
let result = | ||
provider.register_table(table_name.to_string(), Arc::new(other_table)); | ||
assert!(result.is_err()); | ||
} | ||
|
||
#[tokio::test] | ||
async fn test_schema_register_listing_table() { | ||
let testdata = crate::test_util::parquet_test_data(); | ||
let testdir = if testdata.starts_with('/') { | ||
format!("file://{testdata}") | ||
} else { | ||
format!("file:///{testdata}") | ||
}; | ||
let filename = if testdir.ends_with('/') { | ||
format!("{}{}", testdir, "alltypes_plain.parquet") | ||
} else { | ||
format!("{}/{}", testdir, "alltypes_plain.parquet") | ||
}; | ||
|
||
let table_path = ListingTableUrl::parse(filename).unwrap(); | ||
|
||
let catalog = MemoryCatalogProvider::new(); | ||
let schema = MemorySchemaProvider::new(); | ||
|
||
let ctx = SessionContext::new(); | ||
|
||
let config = ListingTableConfig::new(table_path) | ||
.infer(&ctx.state()) | ||
.await | ||
.unwrap(); | ||
let table = ListingTable::try_new(config).unwrap(); | ||
|
||
schema | ||
.register_table("alltypes_plain".to_string(), Arc::new(table)) | ||
.unwrap(); | ||
|
||
catalog.register_schema("active", Arc::new(schema)).unwrap(); | ||
ctx.register_catalog("cat", Arc::new(catalog)); | ||
|
||
let df = ctx | ||
.sql("SELECT id, bool_col FROM cat.active.alltypes_plain") | ||
.await | ||
.unwrap(); | ||
|
||
let actual = df.collect().await.unwrap(); | ||
|
||
let expected = [ | ||
"+----+----------+", | ||
"| id | bool_col |", | ||
"+----+----------+", | ||
"| 4 | true |", | ||
"| 5 | false |", | ||
"| 6 | true |", | ||
"| 7 | false |", | ||
"| 2 | true |", | ||
"| 3 | false |", | ||
"| 0 | true |", | ||
"| 1 | false |", | ||
"+----+----------+", | ||
]; | ||
assert_batches_eq!(expected, &actual); | ||
} | ||
} |
Oops, something went wrong.