Skip to content

Commit

Permalink
chore: fix warnings for all other targets
Browse files Browse the repository at this point in the history
  • Loading branch information
mehulmathur16 committed Oct 5, 2024
1 parent 80c50ed commit 516b031
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion crates/proof-of-sql/examples/posql_db/commit_accessor.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use core::error::Error;
use indexmap::IndexMap;
use proof_of_sql::base::{
commitment::{Commitment, QueryCommitments, TableCommitment},
database::{CommitmentAccessor, MetadataAccessor, SchemaAccessor, TableRef},
Expand All @@ -13,7 +14,7 @@ impl<C: Commitment + Serialize + for<'a> Deserialize<'a>> CommitAccessor<C> {
pub fn new(base_path: PathBuf) -> Self {
Self {
base_path,
inner: Default::default(),
inner: IndexMap::default(),
}
}
pub fn write_commit(
Expand Down
2 changes: 1 addition & 1 deletion crates/proof-of-sql/examples/posql_db/csv_accessor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ impl CsvDataAccessor {
pub fn new(base_path: PathBuf) -> Self {
Self {
base_path,
inner: Default::default(),
inner: RecordBatchAccessor::default(),
}
}
pub fn load_table(
Expand Down

0 comments on commit 516b031

Please sign in to comment.