hyperstreamdb 0.5.1__tar.gz → 0.5.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hyperstreamdb-0.5.3/.cargo/audit.toml +10 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/CHANGELOG.md +36 -1
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/Cargo.lock +713 -847
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/Cargo.toml +5 -2
- hyperstreamdb-0.5.3/HyperStreamDB.png +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/PKG-INFO +7 -4
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/README.md +5 -3
- hyperstreamdb-0.5.3/ROADMAP.md +562 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benches/bench_table.rs +39 -39
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benches/performance.rs +138 -97
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/build.rs +13 -14
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/clippy.toml +2 -2
- hyperstreamdb-0.5.3/docker-compose-hive.yml +104 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/BENCHMARKING.md +8 -6
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/INSTALLATION.md +2 -2
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/PYTHON_VECTOR_API.md +1 -1
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/api_reference.md +1 -1
- hyperstreamdb-0.5.3/docs/source/_static/HyperStreamDB.png +0 -0
- hyperstreamdb-0.5.3/hive-config/hive-site.xml +75 -0
- hyperstreamdb-0.5.3/marketing_site/index.html +365 -0
- hyperstreamdb-0.5.3/marketing_site/styles.css +793 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/pyproject.toml +1 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/python/hyperstreamdb/__init__.py +1 -1
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/bin/gateway.rs +35 -33
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/bin/hdb.rs +46 -41
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/bin/iceberg_rest.rs +406 -232
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/bin/setup_test_data.rs +10 -9
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/bin/verify_layered_indexing.rs +66 -31
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/cache.rs +127 -96
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/catalog/config.rs +4 -4
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/catalog/glue.rs +111 -65
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/catalog/hive.rs +109 -48
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/catalog/jdbc.rs +63 -35
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/catalog/mod.rs +35 -18
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/catalog/nessie.rs +122 -69
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/catalog/rest.rs +34 -30
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/catalog/unity.rs +72 -35
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/clustering.rs +33 -16
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/compaction.rs +291 -214
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/embeddings.rs +38 -30
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/error.rs +55 -148
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/ffi.rs +69 -72
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/iceberg/delete.rs +175 -78
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/iceberg/manifest.rs +188 -57
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/iceberg/mod.rs +11 -36
- hyperstreamdb-0.5.3/src/core/iceberg/schema.rs +195 -0
- hyperstreamdb-0.5.3/src/core/iceberg/transform.rs +366 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/iceberg/types.rs +3 -1
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/iceberg/value.rs +18 -8
- hyperstreamdb-0.5.3/src/core/iceberg/writer.rs +910 -0
- hyperstreamdb-0.5.3/src/core/index/build_inverted.rs +1132 -0
- hyperstreamdb-0.5.3/src/core/index/build_vector.rs +154 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/distance.rs +51 -35
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/gpu.rs +393 -160
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/hnsw_ivf.rs +707 -307
- hyperstreamdb-0.5.3/src/core/index/hnsw_rs/api.rs +128 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/hnsw_rs/dist.rs +45 -15
- hyperstreamdb-0.5.3/src/core/index/hnsw_rs/flatten.rs +236 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/hnsw_rs/hnsw.rs +723 -589
- hyperstreamdb-0.5.3/src/core/index/hnsw_rs/hnswio.rs +1070 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/hnsw_rs/libext.rs +411 -191
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/hnsw_rs/mod.rs +6 -9
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/hnsw_rs/prelude.rs +2 -2
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/ivf.rs +81 -45
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/memory.rs +142 -43
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/mod.rs +15 -12
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/pq.rs +65 -42
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/turboquant.rs +30 -17
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/license.rs +18 -16
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/lock.rs +57 -20
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/maintenance.rs +75 -42
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/manifest/manager/commit.rs +148 -57
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/manifest/manager/load.rs +196 -99
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/manifest/manager/partition.rs +23 -12
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/manifest/manager/schema.rs +51 -25
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/manifest/manager.rs +14 -14
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/manifest/types.rs +309 -174
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/merge.rs +177 -127
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/metadata.rs +36 -20
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/nessie.rs +59 -31
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/planner.rs +509 -412
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/puffin.rs +20 -17
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/query.rs +131 -73
- hyperstreamdb-0.5.3/src/core/reader/delete.rs +236 -0
- hyperstreamdb-0.5.3/src/core/reader/filter.rs +903 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/reader/mod.rs +183 -145
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/reader/scan.rs +684 -435
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/search/mod.rs +11 -7
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/search/rrf.rs +10 -5
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/segment.rs +275 -148
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/literal/binary.rs +26 -21
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/literal/dense.rs +9 -8
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/literal/mod.rs +71 -22
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/literal/sparse.rs +22 -18
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/mod.rs +141 -95
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/optimizer/config.rs +35 -13
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/optimizer/index_join.rs +11 -10
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/optimizer/vector_search/mod.rs +3 -2
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/optimizer/vector_search/plan_detection.rs +9 -4
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/optimizer/vector_search/plan_rewriter.rs +12 -5
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/optimizer/vector_search/sort_expr_parser.rs +29 -9
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/pgvector_rewriter.rs +71 -56
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/physical_plan/index_join.rs +130 -66
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/physical_plan/vector_merge.rs +19 -17
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/physical_plan/vector_scan.rs +40 -28
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/physical_plan.rs +41 -35
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/session.rs +33 -21
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/udf/aggregate.rs +243 -96
- hyperstreamdb-0.5.3/src/core/sql/udf/distance.rs +722 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/udf/mod.rs +9 -38
- hyperstreamdb-0.5.3/src/core/sql/udf/sparse.rs +379 -0
- hyperstreamdb-0.5.3/src/core/sql/udf/transform.rs +748 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/vector_operators.rs +85 -75
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/vector_udf/distance.rs +1 -1
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/storage.rs +87 -47
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/table/builder.rs +52 -35
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/table/fluent.rs +24 -9
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/table/mod.rs +1360 -844
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/table/read.rs +626 -353
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/table/schema.rs +200 -93
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/table/write.rs +435 -222
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/wal.rs +106 -105
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/enterprise/continuous_indexing.rs +10 -5
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/enterprise/mod.rs +0 -1
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/lib.rs +45 -25
- hyperstreamdb-0.5.3/src/python/catalog/glue.rs +70 -0
- hyperstreamdb-0.5.3/src/python/catalog/hive.rs +74 -0
- hyperstreamdb-0.5.3/src/python/catalog/jdbc.rs +69 -0
- hyperstreamdb-0.5.3/src/python/catalog/mod.rs +197 -0
- hyperstreamdb-0.5.3/src/python/catalog/nessie.rs +75 -0
- hyperstreamdb-0.5.3/src/python/catalog/rest.rs +65 -0
- hyperstreamdb-0.5.3/src/python/catalog/unity.rs +59 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/python/helpers.rs +266 -102
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/python/manifest.rs +9 -2
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/python/schema.rs +107 -24
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/python/session.rs +9 -5
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/python/stats.rs +1 -1
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/python/table.rs +497 -279
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/python_distance.rs +294 -272
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/python_gpu_context.rs +93 -32
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/telemetry/metrics.rs +3 -2
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/telemetry/tracing.rs +29 -29
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/all_types_index_test.rs +33 -13
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/bin/generate_iceberg_manifests.rs +107 -51
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/bin/verify_iceberg_read_check.rs +29 -18
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/datafusion_rust_test.rs +29 -15
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/debug_murmur3.rs +9 -9
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/fuzz_murmur3.rs +12 -12
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/integration_test_hnsw_ivf_native.rs +86 -65
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/schema_evolution_test.rs +27 -21
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/stability.rs +18 -18
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_catalog_commit.rs +26 -15
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_compliance.rs +1 -1
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_delete_correctness.rs +25 -15
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_metadata_creation.rs +8 -8
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_mor_reads.rs +73 -39
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_mor_writes.rs +24 -21
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_partition_transforms.rs +19 -12
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_partitioned_writes.rs +22 -20
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_schema_compat.rs +161 -91
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-config/catalog/glue_catalog.properties +1 -1
- hyperstreamdb-0.5.3/trino-config/catalog/iceberg.properties +15 -0
- hyperstreamdb-0.5.3/trino-config/catalog/iceberg_hive.properties +11 -0
- hyperstreamdb-0.5.1/HyperStreamDB.png +0 -0
- hyperstreamdb-0.5.1/docs/source/_static/HyperStreamDB.png +0 -0
- hyperstreamdb-0.5.1/src/core/iceberg/schema.rs +0 -140
- hyperstreamdb-0.5.1/src/core/iceberg/transform.rs +0 -203
- hyperstreamdb-0.5.1/src/core/iceberg/writer.rs +0 -521
- hyperstreamdb-0.5.1/src/core/index/build_inverted.rs +0 -815
- hyperstreamdb-0.5.1/src/core/index/build_vector.rs +0 -98
- hyperstreamdb-0.5.1/src/core/index/hnsw_rs/api.rs +0 -107
- hyperstreamdb-0.5.1/src/core/index/hnsw_rs/flatten.rs +0 -249
- hyperstreamdb-0.5.1/src/core/index/hnsw_rs/hnswio.rs +0 -970
- hyperstreamdb-0.5.1/src/core/reader/delete.rs +0 -185
- hyperstreamdb-0.5.1/src/core/reader/filter.rs +0 -673
- hyperstreamdb-0.5.1/src/core/sql/udf/distance.rs +0 -517
- hyperstreamdb-0.5.1/src/core/sql/udf/sparse.rs +0 -240
- hyperstreamdb-0.5.1/src/core/sql/udf/transform.rs +0 -483
- hyperstreamdb-0.5.1/src/python/catalog/glue.rs +0 -54
- hyperstreamdb-0.5.1/src/python/catalog/hive.rs +0 -57
- hyperstreamdb-0.5.1/src/python/catalog/jdbc.rs +0 -54
- hyperstreamdb-0.5.1/src/python/catalog/mod.rs +0 -173
- hyperstreamdb-0.5.1/src/python/catalog/nessie.rs +0 -61
- hyperstreamdb-0.5.1/src/python/catalog/rest.rs +0 -49
- hyperstreamdb-0.5.1/src/python/catalog/unity.rs +0 -48
- hyperstreamdb-0.5.1/trino-config/catalog/iceberg.properties +0 -12
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/.env.example +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/.gitattributes +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/.gitignore +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/.hypothesis/constants/32b327793848e7d8 +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/.hypothesis/constants/67b0a8ccf18bf5d2 +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/.hypothesis/constants/84828557b4ee7be4 +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/.instructions.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/.ipynb_checkpoints/Untitled-checkpoint.ipynb +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/.qwen/settings.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/.qwen/settings.json.orig +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/CNAME +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/CONTRIBUTING.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/Dockerfile +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/LICENSE-APACHE +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/LICENSE-MIT +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/RUN_COMPLIANCE_TESTS.sh +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/SECURITY.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/STEERING.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/THIRDPARTY_NOTICES.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/Untitled.ipynb +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/BENCHMARK_REPORT.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/benchmark_charts.png +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/benchmark_results.csv +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/concurrent_queries_20260409_214245.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/concurrent_queries_20260409_214245.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/filtered_search_comparison_20260409_222607.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/filtered_search_comparison_20260409_222607.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/filtered_vector_search_20260409_214355.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/filtered_vector_search_20260409_214355.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/filtered_vector_search_20260409_220418.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/filtered_vector_search_20260409_220418.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/filtered_vector_search_20260409_222053.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/filtered_vector_search_20260409_222053.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/filtered_vector_search_20260409_225907.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/filtered_vector_search_20260409_225907.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/full_scan_baseline_20260409_222303.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/full_scan_baseline_20260409_222303.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/high_selectivity_filter_20260409_222302.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/high_selectivity_filter_20260409_222302.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/ingestion_comparison_20260409_222516.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/ingestion_comparison_20260409_222516.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/multi_filter_vector_20260409_214428.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/multi_filter_vector_20260409_214428.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/multi_filter_vector_20260409_220450.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/multi_filter_vector_20260409_220450.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/multi_filter_vector_20260409_222131.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/multi_filter_vector_20260409_222131.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/multi_filter_vector_20260409_225938.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/multi_filter_vector_20260409_225938.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/multi_filter_vector_20260409_231713.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/multi_filter_vector_20260409_231713.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/post_vs_pre_filter_20260409_214501.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/post_vs_pre_filter_20260409_214501.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/post_vs_pre_filter_20260409_220524.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/post_vs_pre_filter_20260409_220524.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/post_vs_pre_filter_20260409_222204.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/post_vs_pre_filter_20260409_222204.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/post_vs_pre_filter_20260409_230010.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/post_vs_pre_filter_20260409_230010.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/query_comparison_20260409_222541.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/query_comparison_20260409_222541.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/range_query_20260409_222302.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/range_query_20260409_222302.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/search_filtered_high_selectivity_20260409_214144.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/search_filtered_high_selectivity_20260409_214144.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/search_unfiltered_20260409_214028.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/benchmark_results/search_unfiltered_20260409_214028.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/book.toml +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/build-connectors.sh +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/check_iceberg_compliance.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/deny.toml +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docker-compose-minio-nessie.yml +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docker-compose.production.yml +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docker-compose.yml +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/.nojekyll +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/COMPREHENSIVE_GUIDE.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/CONCURRENCY.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/CONFIGURATION.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/DORIS_OPTIMIZATION_PATTERNS.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/GPU_SETUP_GUIDE.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/ICEBERG_V2_V3_API.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/PGVECTOR_SQL_GUIDE.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/VECTOR_CONFIGURATION.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/architecture.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/catalog_usage.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/index.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/integrations/README.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/integrations/java_jni.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/integrations/python.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/integrations/spark.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/integrations/trino.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/monitoring.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/requirements.txt +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/source/api/python.rst +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/source/api/rust.rst +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/source/conf.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/source/index.rst +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/source/roadmap.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/docs/task_status.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/proptest-regressions/core/index/gpu.txt +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/proptest-regressions/core/sql/vector_literal.txt +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/proptest-regressions/core/sql/vector_udf.txt +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/python/hyperstreamdb/embeddings.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/recovered_plan.txt +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/rust-toolchain.toml +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/scripts/fix_nb.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/scripts/split_table.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/scripts/update_cache.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/scripts/update_reader.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/scripts/update_schema_patch.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/scripts/update_schema_patch2.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/spark-hyperstream/.bloop/bloop.settings.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/spark-hyperstream/.bloop/spark-hyperstream-test.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/spark-hyperstream/.bloop/spark-hyperstream.json +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/spark-hyperstream/pom.xml +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/DefaultSource.java +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartition.java +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartitionReader.java +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartitionReaderFactory.java +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamScanBuilder.java +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamTable.java +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/spark-hyperstream/src/test/java/com/hyperstreamdb/spark/SparkConnectorTest.java +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/bin/probe_datafusion.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/iceberg/iceberg_delete.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/cuda/cosine_distance.cu +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/cuda/hamming_distance.cu +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/cuda/inner_product.cu +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/cuda/jaccard_distance.cu +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/cuda/kmeans_assignment.cu +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/cuda/l1_distance.cu +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/cuda/l2_distance.cu +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/hnsw_rs/annhdf5.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/hnsw_rs/test.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/mps/cosine_distance.metal +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/mps/hamming_distance.metal +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/mps/inner_product.metal +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/mps/jaccard_distance.metal +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/mps/kmeans_assignment.metal +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/mps/l1_distance.metal +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/mps/l2_distance.metal +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/opencl/cosine_distance.cl +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/opencl/hamming_distance.cl +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/opencl/inner_product.cl +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/opencl/jaccard_distance.cl +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/opencl/kmeans_assignment.cl +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/opencl/l1_distance.cl +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/opencl/l2_distance.cl +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/tokenizer.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/index/wgpu_kernel.wgsl +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/manifest/mod.rs +2 -2
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/mod.rs +17 -17
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/planner/filter.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/planner/pruning.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/planner/vector_search.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/optimizer.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/vector_literal.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/vector_udf/aggregate.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/vector_udf/mod.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/vector_udf/sparse.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/vector_udf/transform.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/sql/vector_udf.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/table/index_config.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/table/primary_key.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/table/state.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/core/table/stats.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/index.rs.old +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/python/mod.rs +8 -8
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/python_binding.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/src/telemetry/mod.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/check_mmh3.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/data/download_nyc_taxi.sh +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/data/generate_embeddings.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/data/generate_wikipedia.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/data/start_nessie.sh +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/gpu_test_helpers.rs +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/performance/README.md +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/prototype_merge.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/python/verify_docstrings.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/python/verify_fluent_api.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/python/verify_unified_ingest.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_all_algos.py +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_iceberg_python_delete.sh +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_iceberg_rest.sh +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_iceberg_rest_create.sh +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_iceberg_rest_delete.sh +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_iceberg_rest_remove_index.sh +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_iceberg_rest_update.sh +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_puffin_index.sh +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/tests/verify_rest_updates.sh +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-config/.DS_Store +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-config/catalog/hyperstreamdb.properties +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-config/catalog/memory.properties +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-config/catalog/postgres.properties +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-config/config.properties +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-config/entrypoint.sh +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-config/jvm.config +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-config/node.properties +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-config.zip +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-hyperstream/pom.xml +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBColumnHandle.java +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBConnectorFactory.java +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBMetadata.java +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPageSource.java +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPageSourceProvider.java +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPlugin.java +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBSplit.java +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBSplitManager.java +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBTableHandle.java +0 -0
- {hyperstreamdb-0.5.1 → hyperstreamdb-0.5.3}/trino-hyperstream/src/test/java/com/hyperstreamdb/trino/TrinoConnectorTest.java +0 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
[advisories]
|
|
2
|
+
ignore = [
|
|
3
|
+
"RUSTSEC-2024-0437", # protobuf: Crash due to uncontrolled recursion
|
|
4
|
+
"RUSTSEC-2026-0177", # pyo3: Missing Sync bound on PyCFunction::new_closure closures
|
|
5
|
+
"RUSTSEC-2026-0176", # pyo3: Out-of-bounds read in nth / nth_back for PyList and PyTuple iterators
|
|
6
|
+
"RUSTSEC-2023-0071", # rsa: Marvin Attack (no fixed upgrade is available)
|
|
7
|
+
"RUSTSEC-2026-0104", # rustls-webpki: Reachable panic in certificate revocation list parsing
|
|
8
|
+
"RUSTSEC-2026-0099", # rustls-webpki: Name constraints accepted for wildcard names
|
|
9
|
+
"RUSTSEC-2026-0098", # rustls-webpki: Name constraints for URI names incorrectly accepted
|
|
10
|
+
]
|
|
@@ -9,6 +9,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
+
## [0.5.3] - 2026-06-21
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- Unified catalog table loading logic (`load_from_catalog`) across Glue, Hive, Nessie, and REST catalog wrappers in python bindings.
|
|
16
|
+
- Explicit commit-time flushing and background synchronization in integration tests (`test_turboquant_integration.py` and `test_wikipedia.py`).
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Fixed remote path routing in `flush_async` to correctly construct relative remote paths for staged files instead of using local staging paths.
|
|
20
|
+
- Upload data files synchronously relative to commit operation to avoid read-after-write race conditions in remote catalogs.
|
|
21
|
+
- Fixed a missing file upload call in the background indexing task for vector indexes.
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
- Clippy compiler warnings and errors in HNSW/PQ modules.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## [0.5.2] - 2026-06-15
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
- Bumped version to 0.5.2.
|
|
32
|
+
- Resolved write buffer schema alignment & list array indexing bugs.
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## [0.5.1] - 2026-06-07
|
|
37
|
+
|
|
38
|
+
### Changed
|
|
39
|
+
- Optimized vector search.
|
|
40
|
+
- Fixed WAL tests.
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
12
44
|
## [0.5.0] - 2026-06-03
|
|
13
45
|
|
|
14
46
|
### Added
|
|
@@ -292,7 +324,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
292
324
|
|
|
293
325
|
---
|
|
294
326
|
|
|
295
|
-
[Unreleased]: https://github.com/rla3rd/hyperstreamdb/compare/v0.5.
|
|
327
|
+
[Unreleased]: https://github.com/rla3rd/hyperstreamdb/compare/v0.5.3...HEAD
|
|
328
|
+
[0.5.3]: https://github.com/rla3rd/hyperstreamdb/compare/v0.5.2...v0.5.3
|
|
329
|
+
[0.5.2]: https://github.com/rla3rd/hyperstreamdb/compare/v0.5.1...v0.5.2
|
|
330
|
+
[0.5.1]: https://github.com/rla3rd/hyperstreamdb/compare/v0.5.0...v0.5.1
|
|
296
331
|
[0.5.0]: https://github.com/rla3rd/hyperstreamdb/compare/v0.4.1...v0.5.0
|
|
297
332
|
[0.4.0]: https://github.com/rla3rd/hyperstreamdb/compare/v0.3.3...v0.4.0
|
|
298
333
|
[0.3.3]: https://github.com/rla3rd/hyperstreamdb/compare/v0.3.2...v0.3.3
|