Skip to content

Commit

Permalink
ci: try fix compat test
Browse files Browse the repository at this point in the history
Signed-off-by: ClSlaid <cailue@bupt.edu.cn>
  • Loading branch information
ClSlaid committed Feb 20, 2023
1 parent a83da2b commit 8b42e9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/query/storages/iceberg/src/catalog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ impl IcebergCatalog {
// is flatten catalog, return `default` catalog
// with an operator points to it's root
return Ok(vec![Arc::new(
IcebergDatabase::create_database_ommited_default(&self.name, self.operator.clone()),
IcebergDatabase::create_database_omitted_default(&self.name, self.operator.clone()),
)]);
}
let operator = self.operator.operator();
Expand Down Expand Up @@ -142,7 +142,7 @@ impl Catalog for IcebergCatalog {
)));
}
let tbl: Arc<dyn Database> = Arc::new(
IcebergDatabase::create_database_ommited_default(&self.name, self.operator.clone()),
IcebergDatabase::create_database_omitted_default(&self.name, self.operator.clone()),
);
return Ok(tbl);
}
Expand Down
2 changes: 1 addition & 1 deletion src/query/storages/iceberg/src/database.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl IcebergDatabase {
/// create an void database naming `default`
///
/// *for flatten catalogs only*
pub fn create_database_ommited_default(ctl_name: &str, db_root: DataOperator) -> Self {
pub fn create_database_omitted_default(ctl_name: &str, db_root: DataOperator) -> Self {
let info = DatabaseInfo {
ident: DatabaseIdent { db_id: 0, seq: 0 },
name_ident: DatabaseNameIdent {
Expand Down

0 comments on commit 8b42e9f

Please sign in to comment.