AndreaBozzo commented on code in PR #1953:
URL: https://github.com/apache/iceberg-rust/pull/1953#discussion_r2645102222
##########
crates/sqllogictest/src/engine/mod.rs:
##########
@@ -17,29 +17,45 @@
mod datafusion;
+use std::collections::HashMap;
use std::path::Path;
use anyhow::anyhow;
+use serde::Deserialize;
use sqllogictest::{AsyncDB, MakeConnection, Runner, parse_file};
-use toml::Table as TomlTable;
use crate::engine::datafusion::DataFusionEngine;
use crate::error::{Error, Result};
-const TYPE_DATAFUSION: &str = "datafusion";
+/// Configuration for the catalog used by an engine
+#[derive(Debug, Clone, Deserialize)]
+pub struct CatalogConfig {
Review Comment:
Addressed in commit
[baf5874](https://github.com/apache/iceberg-rust/pull/1953/commits/baf5874653531e01f5ba2519bb0915bc23f2e10e)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]