llkv-sql 0.8.5-alpha

SQL interface for the LLKV toolkit.
Documentation
[dependencies.arrow]
default-features = false
features = ["prettyprint", "ipc"]
version = "57.0.0"

[dependencies.llkv-column-map]
version = "0.8.5-alpha"

[dependencies.llkv-compute]
version = "0.8.5-alpha"

[dependencies.llkv-executor]
version = "0.8.5-alpha"

[dependencies.llkv-expr]
version = "0.8.5-alpha"

[dependencies.llkv-plan]
version = "0.8.5-alpha"

[dependencies.llkv-result]
version = "0.8.5-alpha"

[dependencies.llkv-runtime]
version = "0.8.5-alpha"

[dependencies.llkv-storage]
version = "0.8.5-alpha"

[dependencies.llkv-table]
version = "0.8.5-alpha"

[dependencies.llkv-transaction]
version = "0.8.5-alpha"

[dependencies.llkv-types]
version = "0.8.5-alpha"

[dependencies.regex]
version = "1.12.2"

[dependencies.rustc-hash]
version = "2.1.1"

[dependencies.simd-r-drive-entry-handle]
version = "0.15.5-alpha"

[dependencies.sqlparser]
version = "0.59.0"

[dependencies.tracing]
version = "0.1.41"

[dev-dependencies.llkv-storage]
features = ["simd-r-drive-support"]
version = "0.8.5-alpha"

[dev-dependencies.tempfile]
version = "3.23.0"

[[example]]
name = "information_schema_join"
path = "examples/information_schema_join.rs"

[[example]]
name = "multi_column_sort"
path = "examples/multi_column_sort.rs"

[[example]]
name = "simple_query"
path = "examples/simple_query.rs"

[[example]]
name = "test_aggregate_case"
path = "examples/test_aggregate_case.rs"

[lib]
name = "llkv_sql"
path = "src/lib.rs"

[lints.clippy]
disallowed_methods = "deny"
print_stderr = "deny"
print_stdout = "deny"

[package]
authors = ["Jeremy Harris <jeremy.harris@zenosmosis.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database-implementations", "parser-implementations"]
description = "SQL interface for the LLKV toolkit."
edition = "2024"
keywords = ["database", "sql", "arrow", "parser", "query"]
license = "Apache-2.0"
name = "llkv-sql"
publish = true
readme = "README.md"
repository = "https://github.com/jzombie/rust-llkv"
resolver = "2"
version = "0.8.5-alpha"

[package.metadata.cargo-udeps.ignore]
build = []
development = ["llkv-test-utils"]
normal = []

[[test]]
name = "aggregate_distinct_tests"
path = "tests/aggregate_distinct_tests.rs"

[[test]]
name = "correlated_subquery_tests"
path = "tests/correlated_subquery_tests.rs"

[[test]]
name = "custom_type_persistence_tests"
path = "tests/custom_type_persistence_tests.rs"

[[test]]
name = "information_schema_tests"
path = "tests/information_schema_tests.rs"

[[test]]
name = "mvcc_sql_persistence_tests"
path = "tests/mvcc_sql_persistence_tests.rs"

[[test]]
name = "pager_io_tests"
path = "tests/pager_io_tests.rs"

[[test]]
name = "parse_not_null_tests"
path = "tests/parse_not_null_tests.rs"

[[test]]
name = "schema_tests"
path = "tests/schema_tests.rs"

[[test]]
name = "select_without_from_tests"
path = "tests/select_without_from_tests.rs"

[[test]]
name = "subquery_integration_tests"
path = "tests/subquery_integration_tests.rs"

[[test]]
name = "temporary_table_tests"
path = "tests/temporary_table_tests.rs"

[[test]]
name = "transaction_smoke_tests"
path = "tests/transaction_smoke_tests.rs"