Skip to content

Commit

Permalink
change sql catalog crate
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKaul committed Mar 5, 2024
1 parent 7d6bc02 commit 7811cb6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dashtool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ datafusion-sql = "36.0.0"
datafusion-common = "36.0.0"
iceberg-rust = "0.2"
iceberg-rust-spec = "0.2"
iceberg-catalog-sql = "0.2"
iceberg-sql-catalog = "0.2"
serde = { workspace = true }
serde_json = { workspace = true }
sqlparser = { version = "0.43", features = ["visitor"] }
Expand Down
2 changes: 1 addition & 1 deletion dashtool/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub enum Error {
#[error(transparent)]
IcebergSpec(#[from] iceberg_rust_spec::error::Error),
#[error(transparent)]
IcebergSqlCatalog(#[from] iceberg_catalog_sql::error::Error),
IcebergSqlCatalog(#[from] iceberg_sql_catalog::error::Error),
#[error(transparent)]
GitDiscover(#[from] gix::discover::Error),
#[error(transparent)]
Expand Down
2 changes: 1 addition & 1 deletion dashtool/src/plugins/sql/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ use std::{collections::HashMap, sync::Arc};

use argo_workflow::schema::{IoArgoprojWorkflowV1alpha1UserContainer, IoK8sApiCoreV1Volume};
use async_trait::async_trait;
use iceberg_catalog_sql::SqlCatalogList;
use iceberg_rust::catalog::CatalogList;
use iceberg_sql_catalog::SqlCatalogList;
use object_store::{aws::AmazonS3Builder, memory::InMemory, ObjectStore};
use serde::{Deserialize, Serialize};

Expand Down

0 comments on commit 7811cb6

Please sign in to comment.