Skip to content
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
10 changes: 10 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions java/lance-jni/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion java/lance-jni/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ lance-index = { path = "../../rust/lance-index" }
lance-io = { path = "../../rust/lance-io" }
lance-namespace = { path = "../../rust/lance-namespace" }
lance-namespace-impls = { path = "../../rust/lance-namespace-impls", features = ["rest", "rest-adapter"] }
lance-namespace-reqwest-client = "0.5.2"
lance-core = { path = "../../rust/lance-core" }
lance-file = { path = "../../rust/lance-file" }
lance-table = { path = "../../rust/lance-table" }
arrow = { version = "57.1", features = ["ffi"] }
arrow-schema = "57.1"
arrow-schema = "57.3.0"
object_store = { version = "0.12.2" }
tokio = { version = "1.23", features = [
"rt-multi-thread",
Expand Down
1 change: 1 addition & 0 deletions java/lance-jni/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ mod index;
mod merge_insert;
mod namespace;
mod optimize;
mod partition;
mod schema;
mod session;
mod sql;
Expand Down
1 change: 1 addition & 0 deletions java/lance-jni/src/namespace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ use std::collections::HashMap;
use std::sync::Arc;

use async_trait::async_trait;

use bytes::Bytes;
use jni::JNIEnv;
use jni::objects::{GlobalRef, JByteArray, JMap, JObject, JString, JValue};
Expand Down
Loading
Loading