Skip to content

Commit

Permalink
fix: register schema with session
Browse files Browse the repository at this point in the history
  • Loading branch information
tshauck committed Aug 28, 2024
1 parent 7d3040f commit dd72ced
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions exon/exon-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,10 @@ impl CliSessionContext for ExonCLISession {
self.exon_session.session.state()
}

fn register_table_options_extension_from_scheme(&self, _scheme: &str) {
unimplemented!()
fn register_table_options_extension_from_scheme(&self, scheme: &str) {
self.exon_session
.session
.register_table_options_extension_from_scheme(scheme);
}

fn register_object_store(
Expand Down

0 comments on commit dd72ced

Please sign in to comment.