Skip to content

Commit

Permalink
Hivecatalog and IcebergCatalog list_table_functions return vec![]
Browse files Browse the repository at this point in the history
  • Loading branch information
TCeason committed Mar 20, 2023
1 parent 70cc726 commit a753265
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/query/storages/hive/hive/src/hive_catalog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ impl Catalog for HiveCatalog {

// List all table functions' names.
fn list_table_functions(&self) -> Vec<String> {
unimplemented!()
vec![]
}

// Get table engines
Expand Down
2 changes: 1 addition & 1 deletion src/query/storages/iceberg/src/catalog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ impl Catalog for IcebergCatalog {

// List all table functions' names.
fn list_table_functions(&self) -> Vec<String> {
unimplemented!()
vec![]
}

fn as_any(&self) -> &dyn Any {
Expand Down

0 comments on commit a753265

Please sign in to comment.