hyperstreamdb 0.2.2__tar.gz → 0.2.4__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.2.2 → hyperstreamdb-0.2.4}/.gitignore +1 -5
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/Cargo.lock +547 -58
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/Cargo.toml +3 -1
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/PKG-INFO +21 -21
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/README.md +20 -20
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/build.rs +1 -1
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/GPU_SETUP_GUIDE.md +76 -70
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/INSTALLATION.md +12 -12
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/PYTHON_VECTOR_API.md +8 -15
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/api_reference.md +2 -2
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/python/hyperstreamdb/__init__.py +80 -18
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/iceberg.rs +2 -1
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/gpu.rs +224 -47
- hyperstreamdb-0.2.4/src/core/index/wgpu_kernel.wgsl +94 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/manifest.rs +32 -10
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/sql/vector_udf.rs +80 -62
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/python_gpu_context.rs +10 -6
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/.gitattributes +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/.hypothesis/constants/32b327793848e7d8 +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/.hypothesis/constants/67b0a8ccf18bf5d2 +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/.hypothesis/constants/84828557b4ee7be4 +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/.instructions.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/CNAME +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/DORIS_OPTIMIZATION_PATTERNS.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/LICENSE-APACHE +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/LICENSE-MIT +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/RUN_COMPLIANCE_TESTS.sh +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/STEERING.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/THIRDPARTY_NOTICES.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benches/bench_table.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benches/performance.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/BENCHMARK_REPORT.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/benchmark_charts.png +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/benchmark_results.csv +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/concurrent_queries_20260409_214245.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/concurrent_queries_20260409_214245.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/filtered_search_comparison_20260409_222607.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/filtered_search_comparison_20260409_222607.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/filtered_vector_search_20260409_214355.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/filtered_vector_search_20260409_214355.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/filtered_vector_search_20260409_220418.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/filtered_vector_search_20260409_220418.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/filtered_vector_search_20260409_222053.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/filtered_vector_search_20260409_222053.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/filtered_vector_search_20260409_225907.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/filtered_vector_search_20260409_225907.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/full_scan_baseline_20260409_222303.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/full_scan_baseline_20260409_222303.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/high_selectivity_filter_20260409_222302.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/high_selectivity_filter_20260409_222302.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/ingestion_comparison_20260409_222516.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/ingestion_comparison_20260409_222516.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/multi_filter_vector_20260409_214428.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/multi_filter_vector_20260409_214428.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/multi_filter_vector_20260409_220450.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/multi_filter_vector_20260409_220450.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/multi_filter_vector_20260409_222131.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/multi_filter_vector_20260409_222131.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/multi_filter_vector_20260409_225938.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/multi_filter_vector_20260409_225938.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/post_vs_pre_filter_20260409_214501.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/post_vs_pre_filter_20260409_214501.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/post_vs_pre_filter_20260409_220524.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/post_vs_pre_filter_20260409_220524.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/post_vs_pre_filter_20260409_222204.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/post_vs_pre_filter_20260409_222204.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/post_vs_pre_filter_20260409_230010.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/post_vs_pre_filter_20260409_230010.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/query_comparison_20260409_222541.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/query_comparison_20260409_222541.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/range_query_20260409_222302.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/range_query_20260409_222302.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/search_filtered_high_selectivity_20260409_214144.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/search_filtered_high_selectivity_20260409_214144.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/search_unfiltered_20260409_214028.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/benchmark_results/search_unfiltered_20260409_214028.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/book.toml +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/broken_binaries_all.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/broken_bins.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/build-connectors.sh +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/check_iceberg_compliance.py +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/compliance_output.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/critical_code_review.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/debug_log.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/demo_basics_run.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/demo_basics_v2.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docker-compose-minio-nessie.yml +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docker-compose.yml +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/BENCHMARKING.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/COMPREHENSIVE_GUIDE.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/CONCURRENCY.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/CONFIGURATION.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/ICEBERG_V2_V3_API.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/PGVECTOR_SQL_GUIDE.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/VECTOR_CONFIGURATION.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/architecture.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/catalog_usage.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/index.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/integrations/README.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/integrations/java_jni.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/integrations/python.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/integrations/spark.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/integrations/trino.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/requirements.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/source/_static/HyperStreamDB.png +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/source/api/python.rst +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/source/api/rust.rst +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/source/conf.py +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/source/index.rst +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/docs/source/roadmap.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/fix_nb.py +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/proptest-regressions/core/index/gpu.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/proptest-regressions/core/sql/vector_literal.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/proptest-regressions/core/sql/vector_udf.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/pyproject.toml +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/python/hyperstreamdb/embeddings.py +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/python_test_output.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/python_test_output_v2.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/python_test_output_v3.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/rust_check_all_warnings.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/rust_test_output.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/rust_warnings.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/scratch/check_os_error.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/simd_test_results.txt +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/spark-hyperstream/.bloop/bloop.settings.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/spark-hyperstream/.bloop/spark-hyperstream-test.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/spark-hyperstream/.bloop/spark-hyperstream.json +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/spark-hyperstream/pom.xml +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/DefaultSource.java +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartition.java +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartitionReader.java +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamPartitionReaderFactory.java +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamScanBuilder.java +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/spark-hyperstream/src/main/java/com/hyperstreamdb/spark/HyperStreamTable.java +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/bin/gateway.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/bin/hdb.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/bin/iceberg_rest.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/bin/probe_datafusion.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/bin/setup_test_data.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/bin/verify_layered_indexing.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/cache.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/catalog/config.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/catalog/glue.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/catalog/hive.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/catalog/jdbc.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/catalog/mod.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/catalog/nessie.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/catalog/rest.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/catalog/unity.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/clustering.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/compaction.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/embeddings.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/ffi.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/iceberg/iceberg_delete.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/cuda/cosine_distance.cu +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/cuda/hamming_distance.cu +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/cuda/inner_product.cu +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/cuda/jaccard_distance.cu +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/cuda/kmeans_assignment.cu +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/cuda/l1_distance.cu +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/cuda/l2_distance.cu +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/distance.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/hnsw_ivf.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/hnsw_rs/annhdf5.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/hnsw_rs/api.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/hnsw_rs/dist.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/hnsw_rs/flatten.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/hnsw_rs/hnsw.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/hnsw_rs/hnswio.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/hnsw_rs/libext.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/hnsw_rs/mod.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/hnsw_rs/prelude.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/hnsw_rs/test.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/ivf.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/memory.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/mod.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/mps/cosine_distance.metal +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/mps/hamming_distance.metal +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/mps/inner_product.metal +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/mps/jaccard_distance.metal +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/mps/kmeans_assignment.metal +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/mps/l1_distance.metal +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/mps/l2_distance.metal +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/opencl/cosine_distance.cl +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/opencl/hamming_distance.cl +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/opencl/inner_product.cl +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/opencl/jaccard_distance.cl +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/opencl/kmeans_assignment.cl +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/opencl/l1_distance.cl +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/opencl/l2_distance.cl +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/pq.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/index/tokenizer.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/license.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/maintenance.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/merge.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/metadata.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/mod.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/nessie.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/planner.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/puffin.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/query.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/reader.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/segment.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/sql/mod.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/sql/optimizer.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/sql/pgvector_rewriter.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/sql/physical_plan/index_join.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/sql/physical_plan.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/sql/session.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/sql/vector_literal.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/sql/vector_operators.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/storage.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/table/builder.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/table/fluent.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/table/mod.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/table/read.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/table/schema.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/table/write.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/core/wal.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/enterprise/continuous_indexing.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/enterprise/license.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/enterprise/mod.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/index.rs.old +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/lib.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/python_binding.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/python_distance.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/telemetry/metrics.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/telemetry/mod.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/src/telemetry/tracing.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/task.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/all_types_index_test.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/bin/generate_iceberg_manifests.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/bin/verify_iceberg_read_check.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/check_mmh3.py +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/data/download_nyc_taxi.sh +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/data/generate_embeddings.py +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/data/generate_wikipedia.py +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/data/start_nessie.sh +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/datafusion_rust_test.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/debug_murmur3.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/fuzz_murmur3.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/integration_test_hnsw_ivf_native.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/performance/README.md +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/prototype_merge.py +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/schema_evolution_test.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_catalog_commit.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_compliance.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_delete_correctness.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_iceberg_python_delete.sh +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_iceberg_rest.sh +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_iceberg_rest_create.sh +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_iceberg_rest_delete.sh +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_iceberg_rest_remove_index.sh +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_iceberg_rest_update.sh +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_metadata_creation.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_mor_reads.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_mor_writes.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_partition_transforms.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_partitioned_writes.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_puffin_index.sh +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_rest_updates.sh +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/tests/verify_schema_compat.rs +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-config/.DS_Store +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-config/catalog/glue_catalog.properties +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-config/catalog/hyperstreamdb.properties +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-config/catalog/iceberg.properties +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-config/catalog/memory.properties +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-config/catalog/postgres.properties +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-config/config.properties +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-config/entrypoint.sh +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-config/jvm.config +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-config/node.properties +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-config.zip +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-hyperstream/pom.xml +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBColumnHandle.java +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBConnectorFactory.java +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBMetadata.java +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPageSource.java +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPageSourceProvider.java +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBPlugin.java +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBSplit.java +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBSplitManager.java +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/trino-hyperstream/src/main/java/com/hyperstreamdb/trino/HyperStreamDBTableHandle.java +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/update_schema_patch.py +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/update_schema_patch2.py +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/verify_docstrings.py +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/verify_fluent_api.py +0 -0
- {hyperstreamdb-0.2.2 → hyperstreamdb-0.2.4}/verify_unified_ingest.py +0 -0