Skip to content
Merged
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
1 change: 1 addition & 0 deletions surrealdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ kv-indxdb = ["surrealdb-core/kv-indxdb"]
kv-rocksdb = ["surrealdb-core/kv-rocksdb", "tokio/time"]
kv-tikv = ["surrealdb-core/kv-tikv", "tokio/time"]
kv-surrealkv = ["surrealdb-core/kv-surrealkv", "tokio/time"]
kv-lance = ["surrealdb-core/kv-lance", "tokio/time"]

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Wire Lance into the SDK connection layer

When an SDK consumer enables this feature and attempts to use the public API with a Lance endpoint such as Surreal::new::<Any>("lance://..."), the backend is still unreachable: EndpointKind::from maps lance to Unsupported in surrealdb/src/opt/endpoint/mod.rs, the native Any router has no Lance match arm, and engine::local is not enabled by kv-lance in surrealdb/src/engine/mod.rs. The connection therefore returns Unsupported scheme: lance even though this feature successfully enables the core backend, so the feature needs the corresponding SDK endpoint/router/local-engine wiring.

Useful? React with 👍 / 👎.

scripting = ["surrealdb-core/scripting"]
http = ["surrealdb-core/http"]
native-tls = [
Expand Down