MCPcopy Create free account
hub / github.com/apache/paimon-rust / create_database

Method create_database

crates/integrations/datafusion/src/sql_context.rs:2373–2380  ·  view source on GitHub ↗
(
            &self,
            _name: &str,
            _ignore_if_exists: bool,
            _properties: HashMap<String, String>,
        )

Source from the content-addressed store, hash-verified

2371 Ok(vec![])
2372 }
2373 async fn create_database(
2374 &self,
2375 _name: &str,
2376 _ignore_if_exists: bool,
2377 _properties: HashMap<String, String>,
2378 ) -> paimon::Result<()> {
2379 Ok(())
2380 }
2381 async fn get_database(&self, _name: &str) -> paimon::Result<Database> {
2382 Err(paimon::Error::DatabaseNotExist {
2383 database: _name.to_string(),

Calls

no outgoing calls