(
&self,
_name: &str,
_ignore_if_exists: bool,
_properties: HashMap<String, String>,
)
| 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(), |
no outgoing calls