Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: Isolate arrow code #237 #267

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ ark-poly = { version = "0.4.0" }
ark-serialize = { version = "0.4.0" }
ark-std = { version = "0.4.0", default-features = false }
arrayvec = { version = "0.7", default-features = false }
arrow = { version = "51.0" }
arrow-csv = { version = "51.0" }
arrow = { version = "53.0" }
arrow-csv = { version = "53.0" }
bit-iter = { version = "1.1.1" }
bigdecimal = { version = "0.4.5", default-features = false, features = ["serde"] }
blake3 = { version = "1.3.3", default-features = false }
Expand Down
12 changes: 7 additions & 5 deletions crates/proof-of-sql/examples/posql_db/record_batch_accessor.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
use arrow::record_batch::RecordBatch;
use bumpalo::Bump;
use indexmap::IndexMap;
use proof_of_sql::base::{
database::{
ArrayRefExt, Column, ColumnRef, ColumnType, DataAccessor, MetadataAccessor, SchemaAccessor,
TableRef,
use proof_of_sql::{
arrow::base_database_arrow::ArrayRefExt,
base::{
database::{
Column, ColumnRef, ColumnType, DataAccessor, MetadataAccessor, SchemaAccessor, TableRef,
},
scalar::Scalar,
},
scalar::Scalar,
};
use proof_of_sql_parser::Identifier;

Expand Down
2 changes: 2 additions & 0 deletions crates/proof-of-sql/src/arrow/base_commitment_arrow/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/// This module contains errors that can occur while manipulating a [`TableCommitment`].
pub mod table_commitment_errors;
Loading