├── .cargo └── config.toml ├── .git-blame-ignore-revs ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yaml ├── actions │ └── install │ │ └── action.yaml ├── assets │ ├── template.yaml │ └── tpch-bench.yaml ├── ci-scripts │ ├── distributed_tpch.py │ ├── generate_simple_py_index.py │ ├── local_tpch.py │ └── run_ai_benchmark.py ├── dependabot.yml ├── pull_request_template.md ├── release-drafter.yml └── workflows │ ├── benchmark-ai.yml │ ├── benchmark-distributed-tpch.yml │ ├── benchmark-local-tpch.yml │ ├── broken-link-checker.yml │ ├── build-docs.yml │ ├── build-wheel.yml │ ├── daft-profiling.yml │ ├── nightly-publish-s3.yml │ ├── notebook-checker.yml │ ├── pr-labeller.yml │ ├── pr-test-suite.yml │ ├── property-based-tests.yml │ ├── publish-daft-quickstart-chart.yml │ ├── publish-dev-s3.yml │ ├── publish-pypi.yml │ └── release-drafter.yml ├── .gitignore ├── .lldbinit ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .ruff.toml ├── .vscode ├── launch-example.json └── settings.json ├── AGENTS.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.rst ├── SECURITY.md ├── assets └── benchmark.png ├── benchmarking ├── __init__.py ├── ai │ ├── README.md │ ├── audio_transcription │ │ ├── README.md │ │ ├── cluster.yaml │ │ ├── daft_main.py │ │ ├── pyproject.toml │ │ ├── ray_data_main.py │ │ └── spark.ipynb │ ├── document_embedding │ │ ├── README.md │ │ ├── cluster.yaml │ │ ├── daft_main.py │ │ ├── pyproject.toml │ │ ├── ray_data_main.py │ │ └── spark.ipynb │ ├── image_classification │ │ ├── README.md │ │ ├── cluster.yaml │ │ ├── daft_main.py │ │ ├── pyproject.toml │ │ ├── ray_data_main.py │ │ └── spark.ipynb │ └── video_object_detection │ │ ├── README.md │ │ ├── cluster.yaml │ │ ├── daft_main.py │ │ ├── pyproject.toml │ │ ├── ray_data_main.py │ │ └── spark.ipynb ├── common_crawl │ └── extract.py ├── parquet │ ├── README.md │ ├── __init__.py │ ├── benchmark-requirements.txt │ ├── conftest.py │ ├── test_bulk_reads.py │ ├── test_local.py │ └── test_num_rowgroups.py ├── tpcds │ ├── __init__.py │ ├── __main__.py │ ├── datagen.py │ ├── helpers.py │ ├── queries │ │ ├── 01.sql │ │ ├── 02.sql │ │ ├── 03.sql │ │ ├── 04.sql │ │ ├── 05.sql │ │ ├── 06.sql │ │ ├── 07.sql │ │ ├── 08.sql │ │ ├── 09.sql │ │ ├── 10.sql │ │ ├── 11.sql │ │ ├── 12.sql │ │ ├── 13.sql │ │ ├── 14.sql │ │ ├── 15.sql │ │ ├── 16.sql │ │ ├── 17.sql │ │ ├── 18.sql │ │ ├── 19.sql │ │ ├── 20.sql │ │ ├── 21.sql │ │ ├── 22.sql │ │ ├── 23.sql │ │ ├── 24.sql │ │ ├── 25.sql │ │ ├── 26.sql │ │ ├── 27.sql │ │ ├── 28.sql │ │ ├── 29.sql │ │ ├── 30.sql │ │ ├── 31.sql │ │ ├── 32.sql │ │ ├── 33.sql │ │ ├── 34.sql │ │ ├── 35.sql │ │ ├── 36.sql │ │ ├── 37.sql │ │ ├── 38.sql │ │ ├── 39.sql │ │ ├── 40.sql │ │ ├── 41.sql │ │ ├── 42.sql │ │ ├── 43.sql │ │ ├── 44.sql │ │ ├── 45.sql │ │ ├── 46.sql │ │ ├── 47.sql │ │ ├── 48.sql │ │ ├── 49.sql │ │ ├── 50.sql │ │ ├── 51.sql │ │ ├── 52.sql │ │ ├── 53.sql │ │ ├── 54.sql │ │ ├── 55.sql │ │ ├── 56.sql │ │ ├── 57.sql │ │ ├── 58.sql │ │ ├── 59.sql │ │ ├── 60.sql │ │ ├── 61.sql │ │ ├── 62.sql │ │ ├── 63.sql │ │ ├── 64.sql │ │ ├── 65.sql │ │ ├── 66.sql │ │ ├── 67.sql │ │ ├── 68.sql │ │ ├── 69.sql │ │ ├── 70.sql │ │ ├── 71.sql │ │ ├── 72.sql │ │ ├── 73.sql │ │ ├── 74.sql │ │ ├── 75.sql │ │ ├── 76.sql │ │ ├── 77.sql │ │ ├── 78.sql │ │ ├── 79.sql │ │ ├── 80.sql │ │ ├── 81.sql │ │ ├── 82.sql │ │ ├── 83.sql │ │ ├── 84.sql │ │ ├── 85.sql │ │ ├── 86.sql │ │ ├── 87.sql │ │ ├── 88.sql │ │ ├── 89.sql │ │ ├── 90.sql │ │ ├── 91.sql │ │ ├── 92.sql │ │ ├── 93.sql │ │ ├── 94.sql │ │ ├── 95.sql │ │ ├── 96.sql │ │ ├── 97.sql │ │ ├── 98.sql │ │ └── 99.sql │ └── ray_entrypoint.py ├── tpch │ ├── __init__.py │ ├── __main__.py │ ├── answers.py │ ├── answers_sql.py │ ├── data_generation.py │ ├── pipelined_data_generation.py │ ├── queries │ │ ├── 01.sql │ │ ├── 02.sql │ │ ├── 03.sql │ │ ├── 04.sql │ │ ├── 05.sql │ │ ├── 06.sql │ │ ├── 07.sql │ │ ├── 08.sql │ │ ├── 09.sql │ │ ├── 10.sql │ │ ├── 11.sql │ │ ├── 12.sql │ │ ├── 13.sql │ │ ├── 14.sql │ │ ├── 15.sql │ │ ├── 16.sql │ │ ├── 17.sql │ │ ├── 18.sql │ │ ├── 19.sql │ │ ├── 20.sql │ │ ├── 21.sql │ │ └── 22.sql │ ├── ray_job_runner.py │ └── subprefix_s3_files.py └── vllm │ ├── README.md │ ├── config.py │ ├── continuous-batch-sorted.py │ ├── continuous-batch.py │ ├── generate_data.ipynb │ ├── naive-batch-sorted.py │ ├── naive-batch.py │ ├── prefix-bucketing.py │ └── ray-data.py ├── ci └── upload_wheels.sh ├── codecov.yml ├── daft ├── .ruff.toml ├── __init__.py ├── ai │ ├── __init__.py │ ├── _expressions.py │ ├── google │ │ ├── __init__.py │ │ ├── protocols │ │ │ ├── __init__.py │ │ │ └── prompter.py │ │ ├── provider.py │ │ └── typing.py │ ├── lm_studio │ │ ├── __init__.py │ │ ├── protocols │ │ │ └── text_embedder.py │ │ └── provider.py │ ├── metrics.py │ ├── openai │ │ ├── __init__.py │ │ ├── protocols │ │ │ ├── __init__.py │ │ │ ├── prompter.py │ │ │ └── text_embedder.py │ │ ├── provider.py │ │ └── typing.py │ ├── protocols.py │ ├── provider.py │ ├── transformers │ │ ├── __init__.py │ │ ├── protocols │ │ │ ├── __init__.py │ │ │ ├── image_classifier.py │ │ │ ├── image_embedder.py │ │ │ ├── text_classifier.py │ │ │ └── text_embedder.py │ │ └── provider.py │ ├── typing.py │ ├── utils.py │ └── vllm │ │ ├── protocols │ │ └── prompter.py │ │ └── provider.py ├── api_annotations.py ├── arrow_utils.py ├── catalog │ ├── __glue.py │ ├── __iceberg.py │ ├── __init__.py │ ├── __internal.py │ ├── __postgres.py │ ├── __s3tables.py │ └── __unity.py ├── cli.py ├── context.py ├── convert.py ├── daft │ ├── __init__.pyi │ ├── dashboard.pyi │ └── testing.pyi ├── dataframe │ ├── __init__.py │ ├── dataframe.py │ ├── display.py │ ├── preview.py │ └── to_torch.py ├── datasets │ ├── __init__.py │ └── common_crawl.py ├── datatype.py ├── dependencies.py ├── errors.py ├── event_loop.py ├── exceptions.py ├── execution │ ├── __init__.py │ ├── native_executor.py │ ├── ray_actor_pool_udf.py │ ├── udf.py │ ├── udf_worker.py │ └── vllm.py ├── expressions │ ├── __init__.py │ ├── expressions.py │ ├── pyarrow_visitor.py │ ├── testing.py │ └── visitor.py ├── extension_type.py ├── file │ ├── __init__.py │ ├── audio.py │ ├── file.py │ ├── typing.py │ └── video.py ├── filesystem.py ├── functions │ ├── __init__.py │ ├── agg.py │ ├── ai │ │ └── __init__.py │ ├── audio.py │ ├── binary.py │ ├── bitwise.py │ ├── columnar.py │ ├── datetime.py │ ├── embedding.py │ ├── file_.py │ ├── image.py │ ├── list.py │ ├── llm.py │ ├── misc.py │ ├── numeric.py │ ├── partition.py │ ├── str.py │ ├── struct.py │ ├── url.py │ ├── video.py │ └── window.py ├── internal │ ├── __init__.py │ └── gpu.py ├── io │ ├── __init__.py │ ├── __shim.py │ ├── _csv.py │ ├── _generator.py │ ├── _json.py │ ├── _parquet.py │ ├── _range.py │ ├── _sql.py │ ├── _warc.py │ ├── av │ │ ├── __init__.py │ │ └── _read_video_frames.py │ ├── aws_config.py │ ├── bigtable │ │ ├── __init__.py │ │ └── bigtable_data_sink.py │ ├── catalog.py │ ├── clickhouse │ │ ├── __init__.py │ │ └── clickhouse_data_sink.py │ ├── common.py │ ├── delta_lake │ │ ├── __init__.py │ │ ├── _deltalake.py │ │ ├── delta_lake_scan.py │ │ ├── delta_lake_write.py │ │ └── utils.py │ ├── file_path.py │ ├── hudi │ │ ├── __init__.py │ │ ├── _hudi.py │ │ ├── hudi_scan.py │ │ └── pyhudi │ │ │ ├── __init__.py │ │ │ ├── filegroup.py │ │ │ ├── table.py │ │ │ ├── timeline.py │ │ │ └── utils.py │ ├── huggingface │ │ ├── __init__.py │ │ └── sink.py │ ├── iceberg │ │ ├── __init__.py │ │ ├── _iceberg.py │ │ ├── iceberg_scan.py │ │ ├── iceberg_write.py │ │ └── schema_field_id_mapping_visitor.py │ ├── lance │ │ ├── __init__.py │ │ ├── _lance.py │ │ ├── lance_data_sink.py │ │ ├── lance_merge_column.py │ │ ├── lance_scalar_index.py │ │ ├── lance_scan.py │ │ └── utils.py │ ├── mcap │ │ ├── _mcap.py │ │ └── mcap_json_decoder.py │ ├── object_store_options.py │ ├── partitioning.py │ ├── pushdowns.py │ ├── scan.py │ ├── sink.py │ ├── source.py │ ├── turbopuffer │ │ ├── __init__.py │ │ └── turbopuffer_data_sink.py │ └── writer.py ├── lazy_import.py ├── logging.py ├── logical │ ├── __init__.py │ ├── builder.py │ ├── map_partition_ops.py │ └── schema.py ├── pickle │ ├── __init__.py │ ├── cloudpickle.py │ ├── cloudpickle_fast.py │ └── pickle.py ├── py.typed ├── recordbatch │ ├── __init__.py │ ├── micropartition.py │ ├── partitioning.py │ ├── recordbatch.py │ └── recordbatch_io.py ├── runners │ ├── __init__.py │ ├── flotilla.py │ ├── native_runner.py │ ├── partitioning.py │ ├── profiler.py │ ├── progress_bar.py │ ├── ray_runner.py │ ├── runner.py │ └── runner_io.py ├── scarf_telemetry.py ├── schema.py ├── series.py ├── session.py ├── sql │ ├── __init__.py │ ├── sql.py │ ├── sql_connection.py │ └── sql_scan.py ├── subscribers │ ├── __init__.py │ ├── abc.py │ └── dashboard.py ├── udf │ ├── __init__.py │ ├── execution.py │ ├── legacy.py │ ├── metrics.py │ └── udf_v2.py ├── unity_catalog │ ├── __init__.py │ └── unity_catalog.py ├── utils.py ├── viz │ ├── __init__.py │ └── html_viz_hooks.py └── window.py ├── docs ├── SUMMARY.md ├── ai-functions │ ├── classify.md │ ├── embed.md │ ├── overview.md │ ├── prompt.md │ └── providers.md ├── api │ ├── aggregations.md │ ├── ai.md │ ├── catalogs_tables.md │ ├── config.md │ ├── dataframe.md │ ├── datasets.md │ ├── datatypes │ │ ├── casting.md │ │ ├── index.md │ │ └── type_conversions.md │ ├── expressions.md │ ├── index.md │ ├── io.md │ ├── misc.md │ ├── schema.md │ ├── series.md │ ├── sessions.md │ ├── udf.md │ └── window.md ├── architecture │ └── index.md ├── benchmarks │ ├── index.md │ ├── tpch-1000sf.html │ ├── tpch-100sf.html │ └── tpch-nodes-count-daft-1000-sf.html ├── configuration │ └── sessions-usage.md ├── connectors │ ├── aws.md │ ├── azure.md │ ├── custom.md │ ├── delta_lake.md │ ├── glue.md │ ├── hudi.md │ ├── huggingface.md │ ├── iceberg.md │ ├── index.md │ ├── lance.md │ ├── postgres.md │ ├── s3tables.md │ ├── sql.md │ ├── turbopuffer.md │ └── unity_catalog.md ├── contributing │ ├── contributing-ai-functions.md │ ├── development.md │ └── overview.md ├── css │ ├── docsearch.css │ └── extra.css ├── custom-code │ ├── apis.md │ ├── cls.md │ ├── func.md │ ├── gpu.md │ ├── index.md │ ├── migration.md │ └── udfs.md ├── datasets │ └── common-crawl.md ├── distributed │ ├── index.md │ ├── kubernetes.md │ └── ray.md ├── examples │ ├── audio-transcription.md │ ├── common-crawl-daft-tutorial.md │ ├── document-processing.md │ ├── image-generation.md │ ├── index.md │ ├── llms-red-pajamas.md │ ├── minhash-dedupe.md │ ├── mnist.md │ ├── querying-images.md │ ├── text-embeddings.md │ ├── voice-ai-analytics.md │ └── window-functions.md ├── gen_pages │ ├── gen_function_pages.py │ ├── gen_txt_files.py │ ├── generate_llms_txt.py │ └── templates │ │ ├── function_page.md.j2 │ │ └── functions.md.j2 ├── hooks.py ├── img │ ├── architecture.png │ ├── colab.png │ ├── daft.png │ ├── doc_proc.png │ ├── favicon.png │ ├── flotilla.png │ ├── optimizer.png │ ├── sql_distributed_read.png │ ├── swordfish.png │ ├── text-embed-gpu-utilization.jpeg │ ├── window-functions-image-1.jpeg │ ├── window-functions-image-2.png │ ├── window-functions-image-3.png │ ├── window-functions-image-4.png │ ├── window-functions-image-5.png │ ├── window-functions-image-6.png │ └── window-functions-image-7.jpeg ├── index.md ├── install.md ├── js │ ├── custom.js │ ├── docsearch.js │ ├── install-tool.js │ ├── readthedocs.js │ └── reo.js ├── modalities │ ├── audio.md │ ├── custom.md │ ├── images.md │ ├── json.md │ ├── overview.md │ ├── text.md │ ├── urls.md │ └── videos.md ├── optimization │ ├── memory.md │ ├── observability.md │ └── partitioning.md ├── overrides │ ├── main.html │ └── partials │ │ ├── header.html │ │ ├── nav-item.html │ │ ├── search.html │ │ ├── toc-item.html │ │ └── toc.html ├── plugins │ ├── README.md │ ├── nav_hide_children │ │ ├── __init__.py │ │ ├── plugin.py │ │ └── pyproject.toml │ └── setup.py ├── quickstart.ipynb ├── quickstart.md ├── roadmap.md ├── robots.txt ├── sql │ ├── datatypes.md │ ├── identifiers.md │ ├── index.md │ ├── statements │ │ ├── select.md │ │ ├── show.md │ │ └── use.md │ └── window_functions.md ├── telemetry.md ├── templates │ └── python │ │ └── material │ │ └── docstring │ │ └── examples.html.jinja └── use-case │ ├── batch-inference.md │ └── daft-pipeline-visualization.png ├── k8s └── charts │ └── quickstart │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── head-deployment.yaml │ ├── head-service.yaml │ ├── job-script-configmap.yaml │ ├── job.yaml │ ├── serviceaccount.yaml │ └── worker-deployment.yaml │ └── values.yaml ├── mkdocs.yml ├── pyproject.toml ├── rust-toolchain.toml ├── rustfmt.toml ├── src ├── arrow2 │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── build.rs │ └── src │ │ ├── README.md │ │ ├── array │ │ ├── README.md │ │ ├── binary │ │ │ ├── data.rs │ │ │ ├── ffi.rs │ │ │ ├── fmt.rs │ │ │ ├── from.rs │ │ │ ├── iterator.rs │ │ │ ├── mod.rs │ │ │ ├── mutable.rs │ │ │ └── mutable_values.rs │ │ ├── boolean │ │ │ ├── data.rs │ │ │ ├── ffi.rs │ │ │ ├── fmt.rs │ │ │ ├── from.rs │ │ │ ├── iterator.rs │ │ │ ├── mod.rs │ │ │ └── mutable.rs │ │ ├── dictionary │ │ │ ├── data.rs │ │ │ ├── ffi.rs │ │ │ ├── fmt.rs │ │ │ ├── iterator.rs │ │ │ ├── mod.rs │ │ │ ├── mutable.rs │ │ │ ├── typed_iterator.rs │ │ │ └── value_map.rs │ │ ├── dyn_ord.rs │ │ ├── equal │ │ │ ├── binary.rs │ │ │ ├── boolean.rs │ │ │ ├── dictionary.rs │ │ │ ├── fixed_size_binary.rs │ │ │ ├── fixed_size_list.rs │ │ │ ├── list.rs │ │ │ ├── map.rs │ │ │ ├── mod.rs │ │ │ ├── null.rs │ │ │ ├── primitive.rs │ │ │ ├── struct_.rs │ │ │ ├── union.rs │ │ │ └── utf8.rs │ │ ├── ffi.rs │ │ ├── fixed_size_binary │ │ │ ├── data.rs │ │ │ ├── ffi.rs │ │ │ ├── fmt.rs │ │ │ ├── iterator.rs │ │ │ ├── mod.rs │ │ │ └── mutable.rs │ │ ├── fixed_size_list │ │ │ ├── data.rs │ │ │ ├── ffi.rs │ │ │ ├── fmt.rs │ │ │ ├── iterator.rs │ │ │ ├── mod.rs │ │ │ └── mutable.rs │ │ ├── fmt.rs │ │ ├── growable │ │ │ ├── binary.rs │ │ │ ├── boolean.rs │ │ │ ├── dictionary.rs │ │ │ ├── fixed_binary.rs │ │ │ ├── fixed_size_list.rs │ │ │ ├── list.rs │ │ │ ├── map.rs │ │ │ ├── mod.rs │ │ │ ├── null.rs │ │ │ ├── primitive.rs │ │ │ ├── structure.rs │ │ │ ├── union.rs │ │ │ ├── utf8.rs │ │ │ └── utils.rs │ │ ├── indexable.rs │ │ ├── iterator.rs │ │ ├── list │ │ │ ├── data.rs │ │ │ ├── ffi.rs │ │ │ ├── fmt.rs │ │ │ ├── iterator.rs │ │ │ ├── mod.rs │ │ │ └── mutable.rs │ │ ├── map │ │ │ ├── data.rs │ │ │ ├── ffi.rs │ │ │ ├── fmt.rs │ │ │ ├── iterator.rs │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── null.rs │ │ ├── ord.rs │ │ ├── physical_binary.rs │ │ ├── primitive │ │ │ ├── data.rs │ │ │ ├── ffi.rs │ │ │ ├── fmt.rs │ │ │ ├── from_natural.rs │ │ │ ├── iterator.rs │ │ │ ├── mod.rs │ │ │ └── mutable.rs │ │ ├── specification.rs │ │ ├── struct_ │ │ │ ├── data.rs │ │ │ ├── ffi.rs │ │ │ ├── fmt.rs │ │ │ ├── iterator.rs │ │ │ ├── mod.rs │ │ │ └── mutable.rs │ │ ├── union │ │ │ ├── data.rs │ │ │ ├── ffi.rs │ │ │ ├── fmt.rs │ │ │ ├── iterator.rs │ │ │ └── mod.rs │ │ └── utf8 │ │ │ ├── data.rs │ │ │ ├── ffi.rs │ │ │ ├── fmt.rs │ │ │ ├── from.rs │ │ │ ├── iterator.rs │ │ │ ├── mod.rs │ │ │ ├── mutable.rs │ │ │ └── mutable_values.rs │ │ ├── bitmap │ │ ├── assign_ops.rs │ │ ├── bitmap_ops.rs │ │ ├── immutable.rs │ │ ├── iterator.rs │ │ ├── mod.rs │ │ ├── mutable.rs │ │ └── utils │ │ │ ├── chunk_iterator │ │ │ ├── chunks_exact.rs │ │ │ ├── merge.rs │ │ │ └── mod.rs │ │ │ ├── chunks_exact_mut.rs │ │ │ ├── fmt.rs │ │ │ ├── iterator.rs │ │ │ ├── mod.rs │ │ │ ├── slice_iterator.rs │ │ │ └── zip_validity.rs │ │ ├── buffer │ │ ├── immutable.rs │ │ ├── iterator.rs │ │ └── mod.rs │ │ ├── chunk.rs │ │ ├── compute │ │ ├── README.md │ │ ├── aggregate │ │ │ ├── memory.rs │ │ │ ├── min_max.rs │ │ │ ├── mod.rs │ │ │ ├── simd │ │ │ │ ├── mod.rs │ │ │ │ └── native.rs │ │ │ └── sum.rs │ │ ├── arithmetics │ │ │ ├── basic │ │ │ │ ├── add.rs │ │ │ │ ├── div.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── mul.rs │ │ │ │ ├── pow.rs │ │ │ │ ├── rem.rs │ │ │ │ └── sub.rs │ │ │ ├── decimal │ │ │ │ ├── add.rs │ │ │ │ ├── div.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── mul.rs │ │ │ │ └── sub.rs │ │ │ ├── mod.rs │ │ │ └── time.rs │ │ ├── arity.rs │ │ ├── arity_assign.rs │ │ ├── bitwise.rs │ │ ├── boolean.rs │ │ ├── boolean_kleene.rs │ │ ├── cast │ │ │ ├── binary_to.rs │ │ │ ├── boolean_to.rs │ │ │ ├── decimal_to.rs │ │ │ ├── dictionary_to.rs │ │ │ ├── mod.rs │ │ │ ├── primitive_to.rs │ │ │ └── utf8_to.rs │ │ ├── comparison │ │ │ ├── binary.rs │ │ │ ├── boolean.rs │ │ │ ├── mod.rs │ │ │ ├── primitive.rs │ │ │ ├── simd │ │ │ │ ├── mod.rs │ │ │ │ ├── native.rs │ │ │ │ └── packed.rs │ │ │ └── utf8.rs │ │ ├── concatenate.rs │ │ ├── contains.rs │ │ ├── filter.rs │ │ ├── hash.rs │ │ ├── if_then_else.rs │ │ ├── length.rs │ │ ├── like.rs │ │ ├── limit.rs │ │ ├── merge_sort │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── nullif.rs │ │ ├── partition.rs │ │ ├── regex_match.rs │ │ ├── sort │ │ │ ├── binary.rs │ │ │ ├── boolean.rs │ │ │ ├── common.rs │ │ │ ├── lex_sort.rs │ │ │ ├── mod.rs │ │ │ ├── primitive │ │ │ │ ├── indices.rs │ │ │ │ ├── mod.rs │ │ │ │ └── sort.rs │ │ │ ├── row │ │ │ │ ├── dictionary.rs │ │ │ │ ├── fixed.rs │ │ │ │ ├── interner.rs │ │ │ │ ├── mod.rs │ │ │ │ └── variable.rs │ │ │ └── utf8.rs │ │ ├── substring.rs │ │ ├── take │ │ │ ├── binary.rs │ │ │ ├── boolean.rs │ │ │ ├── dict.rs │ │ │ ├── fixed_size_list.rs │ │ │ ├── generic_binary.rs │ │ │ ├── list.rs │ │ │ ├── mod.rs │ │ │ ├── primitive.rs │ │ │ ├── structure.rs │ │ │ └── utf8.rs │ │ ├── temporal.rs │ │ ├── utf8.rs │ │ ├── utils.rs │ │ └── window.rs │ │ ├── datatypes │ │ ├── field.rs │ │ ├── mod.rs │ │ ├── physical_type.rs │ │ └── schema.rs │ │ ├── docs.rs │ │ ├── error.rs │ │ ├── ffi │ │ ├── array.rs │ │ ├── bridge.rs │ │ ├── generated.rs │ │ ├── mmap.rs │ │ ├── mod.rs │ │ ├── schema.rs │ │ └── stream.rs │ │ ├── io │ │ ├── README.md │ │ ├── avro │ │ │ ├── mod.rs │ │ │ ├── read │ │ │ │ ├── deserialize.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── nested.rs │ │ │ │ ├── schema.rs │ │ │ │ └── util.rs │ │ │ └── write │ │ │ │ ├── mod.rs │ │ │ │ ├── schema.rs │ │ │ │ └── serialize.rs │ │ ├── csv │ │ │ ├── mod.rs │ │ │ ├── read │ │ │ │ ├── deserialize.rs │ │ │ │ ├── infer_schema.rs │ │ │ │ ├── mod.rs │ │ │ │ └── reader.rs │ │ │ ├── read_async │ │ │ │ ├── deserialize.rs │ │ │ │ ├── infer_schema.rs │ │ │ │ ├── mod.rs │ │ │ │ └── reader.rs │ │ │ ├── read_utils.rs │ │ │ ├── utils.rs │ │ │ └── write │ │ │ │ ├── mod.rs │ │ │ │ └── serialize.rs │ │ ├── flight │ │ │ └── mod.rs │ │ ├── ipc │ │ │ ├── append │ │ │ │ └── mod.rs │ │ │ ├── compression.rs │ │ │ ├── endianness.rs │ │ │ ├── mod.rs │ │ │ ├── read │ │ │ │ ├── array │ │ │ │ │ ├── binary.rs │ │ │ │ │ ├── boolean.rs │ │ │ │ │ ├── dictionary.rs │ │ │ │ │ ├── fixed_size_binary.rs │ │ │ │ │ ├── fixed_size_list.rs │ │ │ │ │ ├── list.rs │ │ │ │ │ ├── map.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── null.rs │ │ │ │ │ ├── primitive.rs │ │ │ │ │ ├── struct_.rs │ │ │ │ │ ├── union.rs │ │ │ │ │ └── utf8.rs │ │ │ │ ├── common.rs │ │ │ │ ├── deserialize.rs │ │ │ │ ├── error.rs │ │ │ │ ├── file.rs │ │ │ │ ├── file_async.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── read_basic.rs │ │ │ │ ├── reader.rs │ │ │ │ ├── schema.rs │ │ │ │ ├── stream.rs │ │ │ │ └── stream_async.rs │ │ │ └── write │ │ │ │ ├── common.rs │ │ │ │ ├── common_async.rs │ │ │ │ ├── common_sync.rs │ │ │ │ ├── file_async.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── schema.rs │ │ │ │ ├── serialize.rs │ │ │ │ ├── stream.rs │ │ │ │ ├── stream_async.rs │ │ │ │ └── writer.rs │ │ ├── iterator.rs │ │ ├── json │ │ │ ├── mod.rs │ │ │ ├── read │ │ │ │ ├── deserialize.rs │ │ │ │ ├── infer_schema.rs │ │ │ │ └── mod.rs │ │ │ └── write │ │ │ │ ├── mod.rs │ │ │ │ ├── serialize.rs │ │ │ │ └── utf8.rs │ │ ├── json_integration │ │ │ ├── mod.rs │ │ │ ├── read │ │ │ │ ├── array.rs │ │ │ │ ├── mod.rs │ │ │ │ └── schema.rs │ │ │ └── write │ │ │ │ ├── array.rs │ │ │ │ ├── mod.rs │ │ │ │ └── schema.rs │ │ ├── mod.rs │ │ ├── ndjson │ │ │ ├── mod.rs │ │ │ ├── read │ │ │ │ ├── deserialize.rs │ │ │ │ ├── file.rs │ │ │ │ └── mod.rs │ │ │ └── write │ │ │ │ └── mod.rs │ │ ├── odbc │ │ │ ├── mod.rs │ │ │ ├── read │ │ │ │ ├── deserialize.rs │ │ │ │ ├── mod.rs │ │ │ │ └── schema.rs │ │ │ └── write │ │ │ │ ├── mod.rs │ │ │ │ ├── schema.rs │ │ │ │ └── serialize.rs │ │ ├── orc │ │ │ ├── mod.rs │ │ │ └── read │ │ │ │ └── mod.rs │ │ ├── parquet │ │ │ ├── mod.rs │ │ │ ├── read │ │ │ │ ├── README.md │ │ │ │ ├── deserialize │ │ │ │ │ ├── README.md │ │ │ │ │ ├── binary │ │ │ │ │ │ ├── basic.rs │ │ │ │ │ │ ├── dictionary.rs │ │ │ │ │ │ ├── mod.rs │ │ │ │ │ │ ├── nested.rs │ │ │ │ │ │ └── utils.rs │ │ │ │ │ ├── boolean │ │ │ │ │ │ ├── basic.rs │ │ │ │ │ │ ├── mod.rs │ │ │ │ │ │ └── nested.rs │ │ │ │ │ ├── dictionary │ │ │ │ │ │ ├── mod.rs │ │ │ │ │ │ └── nested.rs │ │ │ │ │ ├── fixed_size_binary │ │ │ │ │ │ ├── basic.rs │ │ │ │ │ │ ├── dictionary.rs │ │ │ │ │ │ ├── mod.rs │ │ │ │ │ │ ├── nested.rs │ │ │ │ │ │ └── utils.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── nested.rs │ │ │ │ │ ├── nested_utils.rs │ │ │ │ │ ├── null │ │ │ │ │ │ ├── mod.rs │ │ │ │ │ │ └── nested.rs │ │ │ │ │ ├── primitive │ │ │ │ │ │ ├── basic.rs │ │ │ │ │ │ ├── dictionary.rs │ │ │ │ │ │ ├── integer.rs │ │ │ │ │ │ ├── mod.rs │ │ │ │ │ │ └── nested.rs │ │ │ │ │ ├── simple.rs │ │ │ │ │ ├── struct_.rs │ │ │ │ │ └── utils.rs │ │ │ │ ├── file.rs │ │ │ │ ├── indexes │ │ │ │ │ ├── binary.rs │ │ │ │ │ ├── boolean.rs │ │ │ │ │ ├── fixed_len_binary.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── primitive.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── row_group.rs │ │ │ │ ├── schema │ │ │ │ │ ├── convert.rs │ │ │ │ │ ├── metadata.rs │ │ │ │ │ └── mod.rs │ │ │ │ └── statistics │ │ │ │ │ ├── binary.rs │ │ │ │ │ ├── boolean.rs │ │ │ │ │ ├── dictionary.rs │ │ │ │ │ ├── fixlen.rs │ │ │ │ │ ├── list.rs │ │ │ │ │ ├── map.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── null.rs │ │ │ │ │ ├── primitive.rs │ │ │ │ │ ├── struct_.rs │ │ │ │ │ └── utf8.rs │ │ │ └── write │ │ │ │ ├── binary │ │ │ │ ├── basic.rs │ │ │ │ ├── mod.rs │ │ │ │ └── nested.rs │ │ │ │ ├── boolean │ │ │ │ ├── basic.rs │ │ │ │ ├── mod.rs │ │ │ │ └── nested.rs │ │ │ │ ├── dictionary.rs │ │ │ │ ├── file.rs │ │ │ │ ├── fixed_len_bytes.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── nested │ │ │ │ ├── def.rs │ │ │ │ ├── mod.rs │ │ │ │ └── rep.rs │ │ │ │ ├── pages.rs │ │ │ │ ├── primitive │ │ │ │ ├── basic.rs │ │ │ │ ├── mod.rs │ │ │ │ └── nested.rs │ │ │ │ ├── row_group.rs │ │ │ │ ├── schema.rs │ │ │ │ ├── sink.rs │ │ │ │ ├── utf8 │ │ │ │ ├── basic.rs │ │ │ │ ├── mod.rs │ │ │ │ └── nested.rs │ │ │ │ └── utils.rs │ │ └── print.rs │ │ ├── lib.rs │ │ ├── mmap │ │ ├── array.rs │ │ └── mod.rs │ │ ├── offset.rs │ │ ├── scalar │ │ ├── README.md │ │ ├── binary.rs │ │ ├── boolean.rs │ │ ├── dictionary.rs │ │ ├── equal.rs │ │ ├── fixed_size_binary.rs │ │ ├── fixed_size_list.rs │ │ ├── list.rs │ │ ├── map.rs │ │ ├── mod.rs │ │ ├── null.rs │ │ ├── primitive.rs │ │ ├── struct_.rs │ │ ├── union.rs │ │ └── utf8.rs │ │ ├── temporal_conversions.rs │ │ ├── trusted_len.rs │ │ ├── types │ │ ├── bit_chunk.rs │ │ ├── index.rs │ │ ├── mod.rs │ │ ├── native.rs │ │ ├── offset.rs │ │ └── simd │ │ │ ├── mod.rs │ │ │ └── native.rs │ │ └── util │ │ ├── bench_util.rs │ │ ├── lexical.rs │ │ └── mod.rs ├── common │ ├── arrow-ffi │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── daft-config │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ └── python.rs │ ├── display │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── ascii.rs │ │ │ ├── lib.rs │ │ │ ├── mermaid.rs │ │ │ ├── table_display.rs │ │ │ ├── tree.rs │ │ │ └── utils.rs │ ├── error │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── error.rs │ │ │ ├── lib.rs │ │ │ └── python.rs │ ├── file-formats │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── file_format.rs │ │ │ ├── file_format_config.rs │ │ │ ├── lib.rs │ │ │ └── python.rs │ ├── hashable-float-wrapper │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── image │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── bbox.rs │ │ │ ├── cow_image.rs │ │ │ ├── image.rs │ │ │ ├── lib.rs │ │ │ └── python.rs │ ├── io-config │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── azure.rs │ │ │ ├── config.rs │ │ │ ├── gcs.rs │ │ │ ├── http.rs │ │ │ ├── huggingface.rs │ │ │ ├── lib.rs │ │ │ ├── python.rs │ │ │ ├── s3.rs │ │ │ ├── tos.rs │ │ │ └── unity.rs │ ├── logging │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── macros │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── function_args.rs │ │ │ └── lib.rs │ ├── metrics │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── operator_metrics.rs │ │ │ ├── ops.rs │ │ │ └── python.rs │ ├── ndarray │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ └── python.rs │ ├── partitioning │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── py-serde │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ └── python.rs │ ├── resource-request │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── runtime │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ └── python.rs │ ├── scan-info │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── expr_rewriter.rs │ │ │ ├── lib.rs │ │ │ ├── partitioning.rs │ │ │ ├── pushdowns.rs │ │ │ ├── python.rs │ │ │ ├── scan_operator.rs │ │ │ ├── scan_task.rs │ │ │ ├── sharder.rs │ │ │ └── test │ │ │ └── mod.rs │ ├── system-info │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── tracing │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── treenode │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── version │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── daft-ai │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── provider.rs │ │ └── python.rs ├── daft-algebra │ ├── Cargo.toml │ └── src │ │ ├── boolean.rs │ │ ├── lib.rs │ │ └── simplify │ │ ├── boolean.rs │ │ ├── mod.rs │ │ ├── null.rs │ │ └── numeric.rs ├── daft-arrow │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── daft-catalog │ ├── Cargo.toml │ └── src │ │ ├── bindings.rs │ │ ├── catalog.rs │ │ ├── error.rs │ │ ├── identifier.rs │ │ ├── impls │ │ ├── memory.rs │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── python │ │ ├── mod.rs │ │ └── wrappers.rs │ │ └── table.rs ├── daft-cli │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── python.rs ├── daft-compression │ ├── Cargo.toml │ └── src │ │ ├── compression.rs │ │ └── lib.rs ├── daft-context │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── partition_cache.rs │ │ ├── python.rs │ │ └── subscribers │ │ ├── dashboard.rs │ │ ├── debug.rs │ │ ├── mod.rs │ │ └── python.rs ├── daft-core │ ├── Cargo.toml │ └── src │ │ ├── array │ │ ├── boolean.rs │ │ ├── file_array.rs │ │ ├── fixed_size_list_array.rs │ │ ├── from.rs │ │ ├── from_iter.rs │ │ ├── growable │ │ │ ├── arrow_growable.rs │ │ │ ├── bitmap_growable.rs │ │ │ ├── fixed_size_list_growable.rs │ │ │ ├── list_growable.rs │ │ │ ├── logical_growable.rs │ │ │ ├── map_growable.rs │ │ │ ├── mod.rs │ │ │ ├── python_growable.rs │ │ │ └── struct_growable.rs │ │ ├── image_array.rs │ │ ├── iterator.rs │ │ ├── list_array.rs │ │ ├── mod.rs │ │ ├── ops │ │ │ ├── abs.rs │ │ │ ├── apply.rs │ │ │ ├── approx_count_distinct.rs │ │ │ ├── approx_sketch.rs │ │ │ ├── arange.rs │ │ │ ├── arithmetic.rs │ │ │ ├── arrow │ │ │ │ ├── comparison.rs │ │ │ │ ├── mod.rs │ │ │ │ └── sort │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── primitive │ │ │ │ │ ├── common.rs │ │ │ │ │ ├── indices.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── sort.rs │ │ │ ├── as_arrow.rs │ │ │ ├── between.rs │ │ │ ├── bitwise.rs │ │ │ ├── bool_agg.rs │ │ │ ├── broadcast.rs │ │ │ ├── cast.rs │ │ │ ├── cbrt.rs │ │ │ ├── ceil.rs │ │ │ ├── clip.rs │ │ │ ├── compare_agg.rs │ │ │ ├── comparison.rs │ │ │ ├── concat.rs │ │ │ ├── concat_agg.rs │ │ │ ├── count.rs │ │ │ ├── exp.rs │ │ │ ├── filter.rs │ │ │ ├── float.rs │ │ │ ├── floor.rs │ │ │ ├── from_arrow.rs │ │ │ ├── full.rs │ │ │ ├── get.rs │ │ │ ├── get_lit.rs │ │ │ ├── groups.rs │ │ │ ├── hash.rs │ │ │ ├── hll_merge.rs │ │ │ ├── hll_sketch.rs │ │ │ ├── if_else.rs │ │ │ ├── image.rs │ │ │ ├── is_in.rs │ │ │ ├── len.rs │ │ │ ├── list_agg.rs │ │ │ ├── log.rs │ │ │ ├── map.rs │ │ │ ├── mean.rs │ │ │ ├── merge_sketch.rs │ │ │ ├── minhash.rs │ │ │ ├── mod.rs │ │ │ ├── null.rs │ │ │ ├── pairwise.rs │ │ │ ├── pow.rs │ │ │ ├── product.rs │ │ │ ├── repr.rs │ │ │ ├── round.rs │ │ │ ├── search_sorted.rs │ │ │ ├── shift.rs │ │ │ ├── sign.rs │ │ │ ├── sketch_percentile.rs │ │ │ ├── skew.rs │ │ │ ├── sort.rs │ │ │ ├── sparse_tensor.rs │ │ │ ├── sqrt.rs │ │ │ ├── stddev.rs │ │ │ ├── struct_.rs │ │ │ ├── sum.rs │ │ │ ├── take.rs │ │ │ ├── tensor.rs │ │ │ ├── time.rs │ │ │ ├── trigonometry.rs │ │ │ ├── truncate.rs │ │ │ └── utf8.rs │ │ ├── prelude.rs │ │ ├── serdes.rs │ │ └── struct_array.rs │ │ ├── count_mode.rs │ │ ├── datatypes │ │ ├── agg_ops.rs │ │ ├── infer_datatype.rs │ │ ├── interval.rs │ │ ├── logical.rs │ │ ├── matching.rs │ │ ├── mod.rs │ │ ├── prelude.rs │ │ └── python.rs │ │ ├── file │ │ ├── mod.rs │ │ └── python.rs │ │ ├── join.rs │ │ ├── kernels │ │ ├── binary.rs │ │ ├── hashing.rs │ │ ├── mod.rs │ │ ├── search_sorted.rs │ │ └── utf8.rs │ │ ├── lib.rs │ │ ├── lit │ │ ├── conversions.rs │ │ ├── deserializer.rs │ │ ├── mod.rs │ │ └── python.rs │ │ ├── prelude.rs │ │ ├── python │ │ ├── mod.rs │ │ └── series.rs │ │ ├── series │ │ ├── array_impl │ │ │ ├── data_array.rs │ │ │ ├── logical_array.rs │ │ │ ├── mod.rs │ │ │ ├── nested_array.rs │ │ │ └── python_array.rs │ │ ├── from.rs │ │ ├── from_lit.rs │ │ ├── mod.rs │ │ ├── ops │ │ │ ├── abs.rs │ │ │ ├── agg.rs │ │ │ ├── arithmetic.rs │ │ │ ├── between.rs │ │ │ ├── binary.rs │ │ │ ├── broadcast.rs │ │ │ ├── cast.rs │ │ │ ├── comparison.rs │ │ │ ├── concat.rs │ │ │ ├── downcast.rs │ │ │ ├── filter.rs │ │ │ ├── floor.rs │ │ │ ├── groups.rs │ │ │ ├── hash.rs │ │ │ ├── if_else.rs │ │ │ ├── is_in.rs │ │ │ ├── len.rs │ │ │ ├── log.rs │ │ │ ├── logical.rs │ │ │ ├── map.rs │ │ │ ├── minhash.rs │ │ │ ├── mod.rs │ │ │ ├── not.rs │ │ │ ├── null.rs │ │ │ ├── partitioning.rs │ │ │ ├── pow.rs │ │ │ ├── repeat.rs │ │ │ ├── search_sorted.rs │ │ │ ├── shift.rs │ │ │ ├── sketch_percentile.rs │ │ │ ├── sort.rs │ │ │ ├── struct_.rs │ │ │ ├── take.rs │ │ │ ├── time.rs │ │ │ ├── utf8.rs │ │ │ └── zip.rs │ │ ├── serdes.rs │ │ ├── series_like.rs │ │ └── utils │ │ │ ├── mod.rs │ │ │ └── python_fn.rs │ │ └── utils │ │ ├── arrow.rs │ │ ├── display.rs │ │ ├── dyn_compare.rs │ │ ├── identity_hash_set.rs │ │ ├── mod.rs │ │ ├── stats.rs │ │ └── supertype.rs ├── daft-csv │ ├── Cargo.toml │ ├── src │ │ ├── lib.rs │ │ ├── local.rs │ │ ├── local │ │ │ └── pool.rs │ │ ├── metadata.rs │ │ ├── options.rs │ │ ├── python.rs │ │ ├── read.rs │ │ └── schema.rs │ └── test │ │ ├── iris_tiny.csv │ │ ├── iris_tiny.csv.br │ │ ├── iris_tiny.csv.bz2 │ │ ├── iris_tiny.csv.deflate │ │ ├── iris_tiny.csv.gz │ │ ├── iris_tiny.csv.lzma │ │ ├── iris_tiny.csv.xz │ │ ├── iris_tiny.csv.zl │ │ ├── iris_tiny.csv.zst │ │ ├── iris_tiny_all_null_column.csv │ │ ├── iris_tiny_bar_delimiter.csv │ │ ├── iris_tiny_comment.csv │ │ ├── iris_tiny_conflicting_dtypes.csv │ │ ├── iris_tiny_double_quote.csv │ │ ├── iris_tiny_empty_lines.csv │ │ ├── iris_tiny_escape.csv │ │ ├── iris_tiny_invalid_header_cols_mismatch.csv │ │ ├── iris_tiny_invalid_no_header_variable_num_cols.csv │ │ ├── iris_tiny_no_headers.csv │ │ ├── iris_tiny_nulls.csv │ │ └── iris_tiny_single_quote.csv ├── daft-dashboard │ ├── Cargo.toml │ ├── build.rs │ ├── frontend │ │ ├── .gitignore │ │ ├── .prettierrc │ │ ├── bun.lockb │ │ ├── components.json │ │ ├── eslint.config.mjs │ │ ├── next.config.ts │ │ ├── package.json │ │ ├── postcss.config.mjs │ │ ├── src │ │ │ ├── app │ │ │ │ ├── favicon.ico │ │ │ │ ├── globals.css │ │ │ │ ├── layout.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── queries │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── status.tsx │ │ │ │ └── query │ │ │ │ │ ├── page.tsx │ │ │ │ │ ├── progress-table.tsx │ │ │ │ │ ├── status.tsx │ │ │ │ │ └── types.ts │ │ │ ├── components │ │ │ │ ├── icons.tsx │ │ │ │ ├── loading.tsx │ │ │ │ ├── navbar │ │ │ │ │ ├── app-navbar.tsx │ │ │ │ │ ├── connection-status.tsx │ │ │ │ │ ├── logo.tsx │ │ │ │ │ └── notification-settings.tsx │ │ │ │ ├── notifications-provider.tsx │ │ │ │ ├── server-provider.tsx │ │ │ │ └── ui │ │ │ │ │ ├── BookOpenTextIcon.tsx │ │ │ │ │ ├── badge.tsx │ │ │ │ │ ├── breadcrumb.tsx │ │ │ │ │ ├── button.tsx │ │ │ │ │ ├── card.tsx │ │ │ │ │ ├── collapsible.tsx │ │ │ │ │ ├── dropdown-menu.tsx │ │ │ │ │ ├── empty.tsx │ │ │ │ │ ├── input.tsx │ │ │ │ │ ├── label.tsx │ │ │ │ │ ├── note.tsx │ │ │ │ │ ├── resizable.tsx │ │ │ │ │ ├── separator.tsx │ │ │ │ │ ├── sheet.tsx │ │ │ │ │ ├── sidebar.tsx │ │ │ │ │ ├── skeleton.tsx │ │ │ │ │ ├── table.tsx │ │ │ │ │ ├── tabs.tsx │ │ │ │ │ └── tooltip.tsx │ │ │ ├── hooks │ │ │ │ ├── use-mobile.tsx │ │ │ │ └── use-queries.ts │ │ │ ├── lib │ │ │ │ └── utils.ts │ │ │ └── public │ │ │ │ └── fish-cake-filled.svg │ │ ├── tailwind.config.ts │ │ └── tsconfig.json │ └── src │ │ ├── assets.rs │ │ ├── client.rs │ │ ├── engine.rs │ │ ├── lib.rs │ │ ├── python.rs │ │ └── state.rs ├── daft-decoding │ ├── Cargo.toml │ └── src │ │ ├── deserialize.rs │ │ ├── inference.rs │ │ └── lib.rs ├── daft-distributed │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── pipeline_node │ │ ├── actor_udf.rs │ │ ├── aggregate.rs │ │ ├── concat.rs │ │ ├── distinct.rs │ │ ├── explode.rs │ │ ├── filter.rs │ │ ├── glob_scan_source.rs │ │ ├── in_memory_source.rs │ │ ├── into_batches.rs │ │ ├── into_partitions.rs │ │ ├── join │ │ │ ├── broadcast_join.rs │ │ │ ├── cross_join.rs │ │ │ ├── hash_join.rs │ │ │ ├── mod.rs │ │ │ ├── sort_merge_join.rs │ │ │ └── translate_join.rs │ │ ├── limit.rs │ │ ├── materialize.rs │ │ ├── mod.rs │ │ ├── monotonically_increasing_id.rs │ │ ├── pivot.rs │ │ ├── project.rs │ │ ├── sample.rs │ │ ├── scan_source.rs │ │ ├── shuffles │ │ │ ├── gather.rs │ │ │ ├── mod.rs │ │ │ ├── pre_shuffle_merge.rs │ │ │ ├── repartition.rs │ │ │ └── translate_shuffle.rs │ │ ├── sink.rs │ │ ├── sort.rs │ │ ├── top_n.rs │ │ ├── translate.rs │ │ ├── udf.rs │ │ ├── unpivot.rs │ │ ├── vllm.rs │ │ └── window.rs │ │ ├── plan │ │ ├── mod.rs │ │ └── runner.rs │ │ ├── python │ │ ├── mod.rs │ │ ├── progress_bar.rs │ │ └── ray │ │ │ ├── mod.rs │ │ │ ├── task.rs │ │ │ ├── worker.rs │ │ │ └── worker_manager.rs │ │ ├── scheduling │ │ ├── dispatcher.rs │ │ ├── mod.rs │ │ ├── scheduler │ │ │ ├── default.rs │ │ │ ├── linear.rs │ │ │ ├── mod.rs │ │ │ └── scheduler_actor.rs │ │ ├── task.rs │ │ ├── tests.rs │ │ └── worker.rs │ │ ├── statistics │ │ ├── mod.rs │ │ └── stats.rs │ │ └── utils │ │ ├── channel.rs │ │ ├── joinset.rs │ │ ├── mod.rs │ │ ├── runtime.rs │ │ ├── stream.rs │ │ └── transpose.rs ├── daft-dsl │ ├── Cargo.toml │ └── src │ │ ├── arithmetic │ │ ├── mod.rs │ │ └── tests.rs │ │ ├── expr │ │ ├── agg.rs │ │ ├── bound_expr.rs │ │ ├── display.rs │ │ ├── mod.rs │ │ ├── tests.rs │ │ └── window.rs │ │ ├── functions │ │ ├── agg │ │ │ └── mod.rs │ │ ├── function_args.rs │ │ ├── macro_tests.rs │ │ ├── map │ │ │ ├── get.rs │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── partitioning │ │ │ ├── evaluators.rs │ │ │ └── mod.rs │ │ ├── prelude.rs │ │ ├── python │ │ │ ├── mod.rs │ │ │ ├── runtime_py_object.rs │ │ │ └── udf.rs │ │ ├── scalar.rs │ │ ├── sketch │ │ │ ├── mod.rs │ │ │ └── percentile.rs │ │ └── struct_ │ │ │ ├── get.rs │ │ │ └── mod.rs │ │ ├── join.rs │ │ ├── lib.rs │ │ ├── optimization.rs │ │ ├── python.rs │ │ ├── python_udf │ │ ├── batch.rs │ │ ├── mod.rs │ │ └── row_wise.rs │ │ ├── treenode.rs │ │ └── visitor.rs ├── daft-file │ ├── Cargo.toml │ └── src │ │ ├── file.rs │ │ ├── functions.rs │ │ ├── lib.rs │ │ └── python.rs ├── daft-functions-binary │ ├── Cargo.toml │ └── src │ │ ├── codecs.rs │ │ ├── decode.rs │ │ ├── encode.rs │ │ ├── kernels.rs │ │ └── lib.rs ├── daft-functions-json │ ├── Cargo.toml │ └── src │ │ ├── jq.rs │ │ └── lib.rs ├── daft-functions-list │ ├── Cargo.toml │ └── src │ │ ├── append.rs │ │ ├── bool_and.rs │ │ ├── bool_or.rs │ │ ├── chunk.rs │ │ ├── count.rs │ │ ├── count_distinct.rs │ │ ├── distinct.rs │ │ ├── explode.rs │ │ ├── get.rs │ │ ├── join.rs │ │ ├── kernels.rs │ │ ├── lib.rs │ │ ├── list_fill.rs │ │ ├── list_map.rs │ │ ├── max.rs │ │ ├── mean.rs │ │ ├── min.rs │ │ ├── series.rs │ │ ├── sort.rs │ │ ├── sum.rs │ │ └── value_counts.rs ├── daft-functions-serde │ ├── Cargo.toml │ └── src │ │ ├── deserialize.rs │ │ ├── format │ │ ├── json.rs │ │ └── mod.rs │ │ ├── lib.rs │ │ └── serialize.rs ├── daft-functions-temporal │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── time.rs │ │ ├── to_string.rs │ │ ├── total.rs │ │ ├── truncate.rs │ │ └── unix_timestamp.rs ├── daft-functions-tokenize │ ├── Cargo.toml │ └── src │ │ ├── bpe.rs │ │ ├── decode.rs │ │ ├── encode.rs │ │ ├── lib.rs │ │ └── special_tokens.rs ├── daft-functions-uri │ ├── Cargo.toml │ └── src │ │ ├── download.rs │ │ ├── lib.rs │ │ ├── parse.rs │ │ └── upload.rs ├── daft-functions-utf8 │ ├── Cargo.toml │ └── src │ │ ├── capitalize.rs │ │ ├── contains.rs │ │ ├── count_matches.rs │ │ ├── endswith.rs │ │ ├── find.rs │ │ ├── ilike.rs │ │ ├── left.rs │ │ ├── length_bytes.rs │ │ ├── lib.rs │ │ ├── like.rs │ │ ├── lower.rs │ │ ├── lpad.rs │ │ ├── lstrip.rs │ │ ├── normalize.rs │ │ ├── pad.rs │ │ ├── regexp_count.rs │ │ ├── regexp_extract.rs │ │ ├── regexp_extract_all.rs │ │ ├── regexp_match.rs │ │ ├── repeat.rs │ │ ├── replace.rs │ │ ├── reverse.rs │ │ ├── right.rs │ │ ├── rpad.rs │ │ ├── rstrip.rs │ │ ├── split.rs │ │ ├── startswith.rs │ │ ├── substr.rs │ │ ├── to_date.rs │ │ ├── to_datetime.rs │ │ ├── upper.rs │ │ └── utils.rs ├── daft-functions │ ├── Cargo.toml │ └── src │ │ ├── coalesce.rs │ │ ├── distance │ │ ├── cosine.rs │ │ └── mod.rs │ │ ├── float │ │ ├── fill_nan.rs │ │ ├── is_inf.rs │ │ ├── is_nan.rs │ │ ├── mod.rs │ │ └── not_nan.rs │ │ ├── hash.rs │ │ ├── length.rs │ │ ├── lib.rs │ │ ├── minhash.rs │ │ ├── monotonically_increasing_id.rs │ │ ├── numeric │ │ ├── abs.rs │ │ ├── cbrt.rs │ │ ├── ceil.rs │ │ ├── clip.rs │ │ ├── exp.rs │ │ ├── floor.rs │ │ ├── log.rs │ │ ├── mod.rs │ │ ├── pow.rs │ │ ├── power.rs │ │ ├── round.rs │ │ ├── sign.rs │ │ ├── sqrt.rs │ │ └── trigonometry.rs │ │ ├── python │ │ └── mod.rs │ │ ├── slice.rs │ │ └── to_struct.rs ├── daft-hash │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── daft-image │ ├── Cargo.toml │ └── src │ │ ├── counting_writer.rs │ │ ├── functions │ │ ├── attribute.rs │ │ ├── crop.rs │ │ ├── decode.rs │ │ ├── encode.rs │ │ ├── mod.rs │ │ ├── resize.rs │ │ └── to_mode.rs │ │ ├── iters.rs │ │ ├── lib.rs │ │ ├── ops.rs │ │ └── series.rs ├── daft-io │ ├── Cargo.toml │ └── src │ │ ├── azure_blob.rs │ │ ├── counting_reader.rs │ │ ├── google_cloud.rs │ │ ├── http.rs │ │ ├── huggingface.rs │ │ ├── integrations.rs │ │ ├── lib.rs │ │ ├── local.rs │ │ ├── object_io.rs │ │ ├── object_store_glob.rs │ │ ├── python.rs │ │ ├── range.rs │ │ ├── retry.rs │ │ ├── s3_like.rs │ │ ├── stats.rs │ │ ├── stream_utils.rs │ │ ├── tos.rs │ │ └── unity.rs ├── daft-json │ ├── Cargo.toml │ ├── src │ │ ├── decoding.rs │ │ ├── deserializer.rs │ │ ├── inference.rs │ │ ├── lib.rs │ │ ├── local.rs │ │ ├── options.rs │ │ ├── python.rs │ │ ├── read.rs │ │ └── schema.rs │ └── test │ │ ├── dtypes.jsonl │ │ ├── iris_tiny.jsonl │ │ ├── iris_tiny.jsonl.br │ │ ├── iris_tiny.jsonl.bz2 │ │ ├── iris_tiny.jsonl.gz │ │ ├── iris_tiny.jsonl.lzma │ │ ├── iris_tiny.jsonl.xz │ │ ├── iris_tiny.jsonl.zl │ │ ├── iris_tiny.jsonl.zst │ │ ├── iris_tiny_all_null_column.jsonl │ │ ├── iris_tiny_conflicting_dtypes.jsonl │ │ └── iris_tiny_nulls.jsonl ├── daft-local-execution │ ├── Cargo.toml │ └── src │ │ ├── buffer.rs │ │ ├── channel.rs │ │ ├── dispatcher.rs │ │ ├── dynamic_batching │ │ ├── dyn_strategy.rs │ │ ├── latency_constrained_strategy.rs │ │ ├── mod.rs │ │ └── static_strategy.rs │ │ ├── intermediate_ops │ │ ├── cross_join.rs │ │ ├── distributed_actor_pool_project.rs │ │ ├── explode.rs │ │ ├── filter.rs │ │ ├── inner_hash_join_probe.rs │ │ ├── intermediate_op.rs │ │ ├── into_batches.rs │ │ ├── mod.rs │ │ ├── project.rs │ │ ├── udf.rs │ │ └── unpivot.rs │ │ ├── lib.rs │ │ ├── pipeline.rs │ │ ├── resource_manager.rs │ │ ├── run.rs │ │ ├── runtime_stats │ │ ├── mod.rs │ │ ├── subscribers.rs │ │ ├── subscribers │ │ │ ├── progress_bar.rs │ │ │ └── query.rs │ │ └── values.rs │ │ ├── sinks │ │ ├── aggregate.rs │ │ ├── blocking_sink.rs │ │ ├── commit_write.rs │ │ ├── dedup.rs │ │ ├── grouped_aggregate.rs │ │ ├── hash_join_build.rs │ │ ├── into_partitions.rs │ │ ├── join_collect.rs │ │ ├── mod.rs │ │ ├── pivot.rs │ │ ├── repartition.rs │ │ ├── sort.rs │ │ ├── top_n.rs │ │ ├── window_base.rs │ │ ├── window_order_by_only.rs │ │ ├── window_partition_and_dynamic_frame.rs │ │ ├── window_partition_and_order_by.rs │ │ ├── window_partition_only.rs │ │ └── write.rs │ │ ├── sources │ │ ├── empty_scan.rs │ │ ├── glob_scan.rs │ │ ├── in_memory.rs │ │ ├── mod.rs │ │ ├── scan_task.rs │ │ └── source.rs │ │ ├── state_bridge.rs │ │ └── streaming_sink │ │ ├── anti_semi_hash_join_probe.rs │ │ ├── async_udf.rs │ │ ├── base.rs │ │ ├── concat.rs │ │ ├── limit.rs │ │ ├── mod.rs │ │ ├── monotonically_increasing_id.rs │ │ ├── outer_hash_join_probe.rs │ │ ├── sample.rs │ │ ├── sort_merge_join_probe.rs │ │ └── vllm.rs ├── daft-local-plan │ ├── Cargo.toml │ └── src │ │ ├── agg.rs │ │ ├── lib.rs │ │ ├── plan.rs │ │ ├── python.rs │ │ └── translate.rs ├── daft-logical-plan │ ├── Cargo.toml │ └── src │ │ ├── builder │ │ ├── mod.rs │ │ └── resolve_expr.rs │ │ ├── display.rs │ │ ├── display │ │ └── json.rs │ │ ├── lib.rs │ │ ├── logical_plan.rs │ │ ├── ops │ │ ├── agg.rs │ │ ├── concat.rs │ │ ├── distinct.rs │ │ ├── explode.rs │ │ ├── filter.rs │ │ ├── into_batches.rs │ │ ├── join.rs │ │ ├── limit.rs │ │ ├── mod.rs │ │ ├── monotonically_increasing_id.rs │ │ ├── offset.rs │ │ ├── pivot.rs │ │ ├── project.rs │ │ ├── repartition.rs │ │ ├── sample.rs │ │ ├── set_operations.rs │ │ ├── shard.rs │ │ ├── sink.rs │ │ ├── sort.rs │ │ ├── source.rs │ │ ├── summarize.rs │ │ ├── top_n.rs │ │ ├── udf.rs │ │ ├── unpivot.rs │ │ ├── vllm.rs │ │ └── window.rs │ │ ├── optimization │ │ ├── join_key_set.rs │ │ ├── logical_plan_tracker.rs │ │ ├── mod.rs │ │ ├── optimizer.rs │ │ ├── rules │ │ │ ├── detect_monotonic_id.rs │ │ │ ├── drop_into_batches.rs │ │ │ ├── drop_repartition.rs │ │ │ ├── eliminate_cross_join.rs │ │ │ ├── eliminate_offsets.rs │ │ │ ├── eliminate_subquery_alias.rs │ │ │ ├── enrich_with_stats.rs │ │ │ ├── extract_window_function.rs │ │ │ ├── filter_null_join_key.rs │ │ │ ├── granular_projections.rs │ │ │ ├── lift_project_from_agg.rs │ │ │ ├── materialize_scans.rs │ │ │ ├── mod.rs │ │ │ ├── push_down_aggregation.rs │ │ │ ├── push_down_anti_semi_join.rs │ │ │ ├── push_down_filter.rs │ │ │ ├── push_down_join_predicate.rs │ │ │ ├── push_down_limit.rs │ │ │ ├── push_down_projection.rs │ │ │ ├── push_down_shard.rs │ │ │ ├── reorder_joins │ │ │ │ ├── brute_force_join_order.rs │ │ │ │ ├── join_graph.rs │ │ │ │ ├── mod.rs │ │ │ │ └── naive_left_deep_join_order.rs │ │ │ ├── rewrite_count_distinct.rs │ │ │ ├── rewrite_offset.rs │ │ │ ├── rule.rs │ │ │ ├── shard_scans.rs │ │ │ ├── simplify_expressions.rs │ │ │ ├── simplify_null_filtered_join.rs │ │ │ ├── split_explode_from_project.rs │ │ │ ├── split_udfs.rs │ │ │ ├── split_vllm.rs │ │ │ └── unnest_subquery.rs │ │ └── test │ │ │ └── mod.rs │ │ ├── partitioning.rs │ │ ├── sink_info.rs │ │ ├── source_info.rs │ │ ├── stats.rs │ │ ├── test │ │ └── mod.rs │ │ └── treenode.rs ├── daft-micropartition │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── micropartition.rs │ │ ├── ops │ │ ├── agg.rs │ │ ├── cast_to_schema.rs │ │ ├── concat.rs │ │ ├── eval_expressions.rs │ │ ├── filter.rs │ │ ├── join.rs │ │ ├── mod.rs │ │ ├── partition.rs │ │ ├── pivot.rs │ │ ├── slice.rs │ │ ├── sort.rs │ │ ├── take.rs │ │ └── unpivot.rs │ │ ├── partitioning.rs │ │ └── python.rs ├── daft-minhash │ ├── Cargo.toml │ ├── benches │ │ ├── minhash.rs │ │ └── windowed.rs │ ├── build.rs │ └── src │ │ ├── lib.rs │ │ ├── tests.rs │ │ └── windowed.rs ├── daft-parquet │ ├── Cargo.toml │ └── src │ │ ├── file.rs │ │ ├── lib.rs │ │ ├── metadata.rs │ │ ├── python.rs │ │ ├── read.rs │ │ ├── read_planner.rs │ │ ├── statistics │ │ ├── column_range.rs │ │ ├── mod.rs │ │ ├── table_stats.rs │ │ └── utils.rs │ │ └── stream_reader.rs ├── daft-recordbatch │ ├── Cargo.toml │ └── src │ │ ├── ffi.rs │ │ ├── file_info.rs │ │ ├── growable │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── ops │ │ ├── agg.rs │ │ ├── explode.rs │ │ ├── groups.rs │ │ ├── hash.rs │ │ ├── joins │ │ │ ├── hash_join.rs │ │ │ ├── merge_join.rs │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── partition.rs │ │ ├── pivot.rs │ │ ├── search_sorted.rs │ │ ├── sort.rs │ │ ├── unpivot.rs │ │ ├── window.rs │ │ └── window_states │ │ │ ├── count.rs │ │ │ ├── count_distinct.rs │ │ │ ├── mean.rs │ │ │ ├── minmax.rs │ │ │ ├── mod.rs │ │ │ └── sum.rs │ │ ├── preview.rs │ │ ├── probeable │ │ ├── mod.rs │ │ ├── probe_set.rs │ │ └── probe_table.rs │ │ ├── python.rs │ │ └── repr_html.rs ├── daft-runners │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── python.rs │ │ └── runners.rs ├── daft-scan │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── anonymous.rs │ │ ├── builder.rs │ │ ├── glob.rs │ │ ├── hive.rs │ │ ├── lib.rs │ │ ├── python.rs │ │ ├── scan_task_iters │ │ └── mod.rs │ │ └── storage_config.rs ├── daft-schema │ ├── Cargo.toml │ └── src │ │ ├── dtype.rs │ │ ├── field.rs │ │ ├── image_format.rs │ │ ├── image_mode.rs │ │ ├── image_property.rs │ │ ├── lib.rs │ │ ├── media_type.rs │ │ ├── prelude.rs │ │ ├── python │ │ ├── datatype.rs │ │ ├── field.rs │ │ ├── mod.rs │ │ └── schema.rs │ │ ├── schema.rs │ │ └── time_unit.rs ├── daft-session │ ├── Cargo.toml │ └── src │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── options.rs │ │ ├── python.rs │ │ └── session.rs ├── daft-shuffles │ ├── Cargo.toml │ └── src │ │ ├── client │ │ ├── flight_client.rs │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── python.rs │ │ ├── server │ │ ├── flight_server.rs │ │ ├── mod.rs │ │ └── stream.rs │ │ └── shuffle_cache.rs ├── daft-sketch │ ├── Cargo.toml │ └── src │ │ ├── arrow2_serde.rs │ │ └── lib.rs ├── daft-sql │ ├── Cargo.toml │ └── src │ │ ├── error.rs │ │ ├── exec.rs │ │ ├── functions.rs │ │ ├── lib.rs │ │ ├── modules │ │ ├── aggs.rs │ │ ├── config.rs │ │ ├── image │ │ │ ├── crop.rs │ │ │ ├── decode.rs │ │ │ ├── encode.rs │ │ │ ├── resize.rs │ │ │ └── to_mode.rs │ │ ├── map.rs │ │ ├── mod.rs │ │ ├── partitioning.rs │ │ ├── python.rs │ │ ├── sketch.rs │ │ ├── structs.rs │ │ └── window.rs │ │ ├── planner.rs │ │ ├── python.rs │ │ ├── schema.rs │ │ ├── statement.rs │ │ └── table_provider │ │ ├── mod.rs │ │ ├── read_csv.rs │ │ ├── read_deltalake.rs │ │ ├── read_iceberg.rs │ │ ├── read_json.rs │ │ └── read_parquet.rs ├── daft-stats │ ├── Cargo.toml │ └── src │ │ ├── column_stats │ │ ├── arithmetic.rs │ │ ├── comparison.rs │ │ ├── logical.rs │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── partition_spec.rs │ │ ├── table_metadata.rs │ │ └── table_stats.rs ├── daft-warc │ ├── Cargo.toml │ ├── src │ │ └── lib.rs │ └── test │ │ ├── example.warc │ │ └── example.warc.gz ├── daft-writers │ ├── Cargo.toml │ └── src │ │ ├── batch.rs │ │ ├── catalog.rs │ │ ├── file.rs │ │ ├── ipc.rs │ │ ├── json_writer.rs │ │ ├── lance.rs │ │ ├── lib.rs │ │ ├── parquet_writer.rs │ │ ├── partition.rs │ │ ├── physical.rs │ │ ├── pyarrow.rs │ │ ├── sink.rs │ │ ├── storage_backend.rs │ │ ├── test.rs │ │ └── utils.rs ├── hyperloglog │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── lib.rs ├── parquet-format-safe │ ├── .gitignore │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── generate_parquet_format.sh │ └── src │ │ ├── lib.rs │ │ ├── parquet_format.rs │ │ └── thrift │ │ ├── errors.rs │ │ ├── mod.rs │ │ ├── protocol │ │ ├── compact.rs │ │ ├── compact.rs.backup │ │ ├── compact_stream.rs │ │ ├── compact_stream_write.rs │ │ ├── compact_write.rs │ │ ├── mod.rs │ │ └── stream.rs │ │ └── varint │ │ ├── LICENSE │ │ ├── decode.rs │ │ ├── decode_async.rs │ │ ├── encode.rs │ │ ├── encode_async.rs │ │ └── mod.rs └── parquet2 │ ├── .gitignore │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src │ ├── bloom_filter │ ├── hash.rs │ ├── mod.rs │ ├── read.rs │ └── split_block.rs │ ├── compression.rs │ ├── deserialize │ ├── binary.rs │ ├── boolean.rs │ ├── filtered_rle.rs │ ├── fixed_len.rs │ ├── hybrid_rle.rs │ ├── mod.rs │ ├── native.rs │ └── utils.rs │ ├── encoding │ ├── bitpacked │ │ ├── decode.rs │ │ ├── encode.rs │ │ ├── mod.rs │ │ ├── pack.rs │ │ └── unpack.rs │ ├── delta_bitpacked │ │ ├── decoder.rs │ │ ├── encoder.rs │ │ └── mod.rs │ ├── delta_byte_array │ │ ├── decoder.rs │ │ ├── encoder.rs │ │ └── mod.rs │ ├── delta_length_byte_array │ │ ├── decoder.rs │ │ ├── encoder.rs │ │ └── mod.rs │ ├── hybrid_rle │ │ ├── bitmap.rs │ │ ├── decoder.rs │ │ ├── encoder.rs │ │ └── mod.rs │ ├── mod.rs │ ├── plain_byte_array.rs │ ├── uleb128.rs │ └── zigzag_leb128.rs │ ├── error.rs │ ├── indexes │ ├── index.rs │ ├── intervals.rs │ └── mod.rs │ ├── lib.rs │ ├── metadata │ ├── column_chunk_metadata.rs │ ├── column_descriptor.rs │ ├── column_order.rs │ ├── file_metadata.rs │ ├── mod.rs │ ├── row_metadata.rs │ ├── schema_descriptor.rs │ └── sort.rs │ ├── page │ └── mod.rs │ ├── parquet_bridge.rs │ ├── read │ ├── column │ │ ├── mod.rs │ │ └── stream.rs │ ├── compression.rs │ ├── indexes │ │ ├── deserialize.rs │ │ ├── mod.rs │ │ └── read.rs │ ├── levels.rs │ ├── metadata.rs │ ├── mod.rs │ ├── page │ │ ├── indexed_reader.rs │ │ ├── mod.rs │ │ ├── reader.rs │ │ └── stream.rs │ └── stream.rs │ ├── schema │ ├── io_message │ │ ├── from_message.rs │ │ └── mod.rs │ ├── io_thrift │ │ ├── from_thrift.rs │ │ ├── mod.rs │ │ └── to_thrift.rs │ ├── mod.rs │ └── types │ │ ├── basic_type.rs │ │ ├── converted_type.rs │ │ ├── mod.rs │ │ ├── parquet_type.rs │ │ ├── physical_type.rs │ │ └── spec.rs │ ├── statistics │ ├── binary.rs │ ├── boolean.rs │ ├── fixed_len_binary.rs │ ├── mod.rs │ └── primitive.rs │ ├── types.rs │ └── write │ ├── column_chunk.rs │ ├── compression.rs │ ├── dyn_iter.rs │ ├── file.rs │ ├── indexes │ ├── mod.rs │ ├── serialize.rs │ └── write.rs │ ├── mod.rs │ ├── page.rs │ ├── row_group.rs │ ├── statistics.rs │ └── stream.rs ├── tests ├── __init__.py ├── actor_pool │ └── __init__.py ├── ai │ ├── __init__.py │ ├── google │ │ ├── test_google_prompter.py │ │ └── test_google_provider.py │ ├── openai │ │ ├── __init__.py │ │ ├── test_openai_prompter.py │ │ ├── test_openai_provider.py │ │ └── test_openai_text_embedder.py │ ├── test_lm_studio.py │ ├── transformers │ │ ├── __init__.py │ │ ├── test_transformers.py │ │ ├── test_transformers_image_classifier.py │ │ ├── test_transformers_image_embedder.py │ │ ├── test_transformers_text_classifier.py │ │ └── test_transformers_text_embedder.py │ └── vllm │ │ └── test_vllm_prompter.py ├── assets │ ├── __init__.py │ ├── common-crawl-sample.parquet │ ├── example.warc │ ├── example.warc.gz │ ├── json-data │ │ ├── baddata1.json │ │ ├── empty │ │ ├── sample1.json │ │ ├── sample1.jsonl │ │ ├── sample2.json │ │ └── sample2.jsonl │ ├── mvp.csv │ ├── parquet-data │ │ ├── databricks-generated.parquet │ │ ├── invalid_utf8.parquet │ │ ├── mvp.parquet │ │ ├── parquet-with-schema-metadata.parquet │ │ └── sampled-tpch-with-stats.parquet │ ├── pyiceberg_catalog.db │ ├── sample_audio.mp3 │ ├── sample_video.mp4 │ ├── sampled-tpch.csv │ ├── sampled-tpch.jsonl │ ├── tokens │ │ ├── bad_base64.tiktoken │ │ ├── bad_rank.tiktoken │ │ ├── bad_token.tiktoken │ │ ├── empty.tiktoken │ │ └── tokens_5k.tiktoken │ └── tpch-sqlite-queries │ │ ├── 1.sql │ │ ├── 10.sql │ │ ├── 11.sql │ │ ├── 12.sql │ │ ├── 13.sql │ │ ├── 14.sql │ │ ├── 15.sql │ │ ├── 16.sql │ │ ├── 17.sql │ │ ├── 18.sql │ │ ├── 19.sql │ │ ├── 2.sql │ │ ├── 20.sql │ │ ├── 21.sql │ │ ├── 22.sql │ │ ├── 3.sql │ │ ├── 4.sql │ │ ├── 5.sql │ │ ├── 6.sql │ │ ├── 7.sql │ │ ├── 8.sql │ │ ├── 9.sql │ │ └── README.md ├── benchmarks │ ├── conftest.py │ ├── test_interactive_reads.py │ ├── test_local_tpch.py │ ├── test_parquet_writes.py │ └── test_streaming_writes.py ├── catalog │ ├── __init__.py │ ├── test_catalog.py │ ├── test_glue.py │ ├── test_iceberg.py │ ├── test_identifier.py │ ├── test_memory.py │ └── test_s3tables.py ├── conftest.py ├── cookbook │ ├── __init__.py │ ├── assets │ │ ├── 311-service-requests.24.csv │ │ ├── __init__.py │ │ └── images │ │ │ ├── 0000.jpg │ │ │ ├── 0007.jpg │ │ │ ├── 0018.png │ │ │ └── 0025.tiff │ ├── conftest.py │ ├── test_aggregations.py │ ├── test_computations.py │ ├── test_count_rows.py │ ├── test_dataloading.py │ ├── test_distinct.py │ ├── test_filter.py │ ├── test_image.py │ ├── test_joins.py │ ├── test_literals.py │ ├── test_pandas_cookbook.py │ ├── test_sorting.py │ └── test_write.py ├── dataframe │ ├── __init__.py │ ├── conftest.py │ ├── test_accessors.py │ ├── test_aggregations.py │ ├── test_approx_count_distinct.py │ ├── test_approx_percentiles_aggregations.py │ ├── test_async_context.py │ ├── test_concat.py │ ├── test_count.py │ ├── test_count_distinct.py │ ├── test_creation.py │ ├── test_decimals.py │ ├── test_describe.py │ ├── test_distinct.py │ ├── test_explain.py │ ├── test_explode.py │ ├── test_filter.py │ ├── test_format_function.py │ ├── test_getitem.py │ ├── test_horizontal.py │ ├── test_into_batches.py │ ├── test_into_partitions.py │ ├── test_iter.py │ ├── test_joins.py │ ├── test_limit_offset.py │ ├── test_logical_type.py │ ├── test_map_groups.py │ ├── test_monotonically_increasing_id.py │ ├── test_morsels.py │ ├── test_pipe.py │ ├── test_pivot.py │ ├── test_preview.py │ ├── test_proto.py │ ├── test_repr.py │ ├── test_sample.py │ ├── test_select.py │ ├── test_set_ops.py │ ├── test_sharding.py │ ├── test_show.py │ ├── test_shuffles.py │ ├── test_sort.py │ ├── test_stddev.py │ ├── test_summarize.py │ ├── test_temporals.py │ ├── test_tensor_math.py │ ├── test_to_integrations.py │ ├── test_to_pylist.py │ ├── test_to_struct.py │ ├── test_transform.py │ ├── test_unpivot.py │ ├── test_wildcard.py │ ├── test_with_column.py │ ├── test_with_column_renamed.py │ ├── test_with_columns.py │ └── test_with_columns_renamed.py ├── datasets │ ├── __init__.py │ └── test_common_crawl_mocked.py ├── expressions │ ├── __init__.py │ ├── conftest.py │ ├── test_apply.py │ ├── test_cosine_distance.py │ ├── test_explode.py │ ├── test_expressions.py │ ├── test_expressions_projection.py │ ├── test_getitem.py │ ├── test_legacy_udf.py │ ├── test_null_safe_equals.py │ ├── test_temporal.py │ ├── test_to_arrow_expr.py │ ├── test_to_list.py │ ├── test_url_parse.py │ ├── test_utf8.py │ ├── test_visitor.py │ └── typing │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_aggs.py │ │ ├── test_arithmetic.py │ │ ├── test_compare.py │ │ ├── test_dt.py │ │ ├── test_float.py │ │ ├── test_logical.py │ │ ├── test_null.py │ │ ├── test_str.py │ │ └── test_when.py ├── file │ ├── test_audio.py │ ├── test_file_basics.py │ ├── test_file_constructors.py │ └── test_video.py ├── functions │ ├── __init__.py │ ├── conftest.py │ ├── json │ │ ├── __init__.py │ │ └── test_jq.py │ ├── serde │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_serde_json.py │ ├── test_codecs.py │ ├── test_list_map.py │ └── test_llm_generate.py ├── integration │ ├── __init__.py │ ├── ai │ │ ├── __init__.py │ │ ├── test_google.py │ │ ├── test_huggingface.py │ │ └── test_openai.py │ ├── conftest.py │ ├── delta_lake │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_table_read.py │ │ ├── test_table_read_pushdowns.py │ │ ├── test_table_write.py │ │ └── utils.py │ ├── iceberg │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── docker-compose │ │ │ ├── Dockerfile │ │ │ ├── check-license │ │ │ ├── docker-compose-azurite.yml │ │ │ ├── docker-compose-gcs-server.yml │ │ │ ├── docker-compose.yml │ │ │ ├── entrypoint.sh │ │ │ ├── provision.py │ │ │ ├── run-azurite.sh │ │ │ ├── run-gcs-server.sh │ │ │ ├── run-minio.sh │ │ │ └── spark-defaults.conf │ │ ├── test_cloud_load.py │ │ ├── test_glue_iceberg.py │ │ ├── test_iceberg_count_pushdown_coverage.py │ │ ├── test_iceberg_reads.py │ │ ├── test_iceberg_table.py │ │ ├── test_iceberg_writes.py │ │ └── test_partition_pruning.py │ ├── io │ │ ├── __init__.py │ │ ├── benchmarks │ │ │ ├── __init__.py │ │ │ └── test_benchmark_glob.py │ │ ├── conftest.py │ │ ├── csv │ │ │ ├── __init__.py │ │ │ └── test_read_pushdowns.py │ │ ├── docker-compose │ │ │ ├── Dockerfile.nginx │ │ │ ├── Dockerfile.s3_retry_server │ │ │ ├── docker-compose.yml │ │ │ ├── nginx-serve-static-files.conf │ │ │ └── retry_server │ │ │ │ ├── __init__.py │ │ │ │ ├── main.py │ │ │ │ ├── retry-server-requirements.txt │ │ │ │ ├── routers │ │ │ │ ├── __init__.py │ │ │ │ ├── rate_limited_echo_gets_bucket.py │ │ │ │ └── retries_parquet_bucket.py │ │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── parquet_generation.py │ │ │ │ ├── request_range.py │ │ │ │ └── responses.py │ │ ├── huggingface │ │ │ ├── test_file_read_huggingface.py │ │ │ ├── test_read_huggingface.py │ │ │ └── test_write_huggingface.py │ │ ├── jsonl │ │ │ ├── __init__.py │ │ │ └── test_read_pushdown.py │ │ ├── parquet │ │ │ ├── __init__.py │ │ │ ├── test_read_pushdowns.py │ │ │ ├── test_reads_azure.py │ │ │ ├── test_reads_local_fixtures.py │ │ │ ├── test_reads_public_data.py │ │ │ └── test_reads_s3_minio.py │ │ ├── test_bigtable_integration.py │ │ ├── test_files_roundtrip_s3_minio.py │ │ ├── test_list_files_azure.py │ │ ├── test_list_files_gcs.py │ │ ├── test_list_files_http.py │ │ ├── test_list_files_s3_minio.py │ │ ├── test_s3_reads_include_path.py │ │ ├── test_url_download_http.py │ │ ├── test_url_download_private_aws_s3.py │ │ ├── test_url_download_public_aws_s3.py │ │ ├── test_url_download_public_azure.py │ │ ├── test_url_download_public_gcs.py │ │ ├── test_url_download_s3_local_retry_server.py │ │ └── test_write_files_s3_minio.py │ ├── ray │ │ ├── autoscaling_cluster.py │ │ ├── fake_cluster.yaml │ │ ├── test_actor_cuda_devices.py │ │ └── test_autoscaling.py │ ├── sql │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── docker-compose │ │ │ └── docker-compose.yml │ │ ├── test_postgres_catalog.py │ │ ├── test_sql.py │ │ └── test_sql_tpch.py │ ├── test_file_tokenize.py │ ├── test_file_udfs_s3.py │ ├── test_tpch.py │ └── unity │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_volumes.py ├── io │ ├── __init__.py │ ├── av │ │ ├── __init__.py │ │ └── test_video.py │ ├── clickhouse │ │ ├── __init__.py │ │ └── test_clickhouse_writes.py │ ├── conftest.py │ ├── hudi │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── data │ │ │ ├── v6_complexkeygen_hivestyle.datagen.sql │ │ │ ├── v6_complexkeygen_hivestyle.zip │ │ │ ├── v6_empty.sql │ │ │ ├── v6_empty.zip │ │ │ ├── v6_nonpartitioned.datagen.sql │ │ │ ├── v6_nonpartitioned.zip │ │ │ ├── v6_simplekeygen_hivestyle_no_metafields.datagen.sql │ │ │ ├── v6_simplekeygen_hivestyle_no_metafields.zip │ │ │ ├── v6_simplekeygen_nonhivestyle.datagen.sql │ │ │ ├── v6_simplekeygen_nonhivestyle.zip │ │ │ ├── v6_timebasedkeygen_nonhivestyle.sql │ │ │ └── v6_timebasedkeygen_nonhivestyle.zip │ │ └── test_table_read.py │ ├── iceberg │ │ ├── __init__.py │ │ └── test_iceberg_writes.py │ ├── lancedb │ │ ├── __init__.py │ │ ├── test_lancedb_count_pushdown_coverage.py │ │ ├── test_lancedb_custom_task.py │ │ ├── test_lancedb_factory_function.py │ │ ├── test_lancedb_reads.py │ │ ├── test_lancedb_scalar_index.py │ │ └── test_lancedb_writes.py │ ├── mcap │ │ └── test_mcap.py │ ├── mock_aws_server.py │ ├── test_csv_roundtrip.py │ ├── test_hive_style_partitions.py │ ├── test_json_array.py │ ├── test_json_roundtrip.py │ ├── test_list_files_local.py │ ├── test_merge_scan_tasks.py │ ├── test_object_store_options.py │ ├── test_parquet.py │ ├── test_parquet_roundtrip.py │ ├── test_partitioning.py │ ├── test_pushdowns.py │ ├── test_range.py │ ├── test_roundtrip_embeddings.py │ ├── test_s3_credentials_refresh.py │ ├── test_sink.py │ ├── test_split_scan_tasks.py │ ├── test_turbopuffer_write.py │ ├── test_url_download_local.py │ ├── test_url_upload_local.py │ ├── test_warc.py │ └── test_write_modes.py ├── microbenchmarks │ ├── __init__.py │ ├── test_concat.py │ ├── test_df_arithmetic.py │ ├── test_file_read.py │ ├── test_filter.py │ ├── test_groups_and_aggs.py │ ├── test_join.py │ ├── test_repartition.py │ ├── test_sort.py │ ├── test_take.py │ └── test_when.py ├── observability │ ├── __init__.py │ └── test_opentelemetry.py ├── property_based_testing │ ├── __init__.py │ ├── strategies.py │ └── test_sort.py ├── ray │ ├── __init__.py │ ├── runner.py │ ├── test_dask.py │ └── test_datasets.py ├── recordbatch │ ├── __init__.py │ ├── binary │ │ ├── test_concat.py │ │ ├── test_fixed_size_binary_concat.py │ │ ├── test_fixed_size_binary_length.py │ │ ├── test_fixed_size_binary_slice.py │ │ ├── test_length.py │ │ └── test_slice.py │ ├── image │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_attribute.py │ │ ├── test_crop.py │ │ ├── test_decode.py │ │ └── test_to_mode.py │ ├── json │ │ ├── __init__.py │ │ └── test_jq.py │ ├── list │ │ ├── __init__.py │ │ ├── test_list_append.py │ │ ├── test_list_bool_aggs.py │ │ ├── test_list_chunk.py │ │ ├── test_list_count_length.py │ │ ├── test_list_distinct.py │ │ ├── test_list_get.py │ │ ├── test_list_join.py │ │ ├── test_list_numeric_aggs.py │ │ ├── test_list_slice.py │ │ └── test_list_sort.py │ ├── map │ │ ├── __init__.py │ │ └── test_map_get.py │ ├── numeric │ │ └── test_numeric.py │ ├── recordbatch_io │ │ ├── __init__.py │ │ ├── test_csv.py │ │ ├── test_json.py │ │ ├── test_parquet.py │ │ └── test_read_time_cast.py │ ├── struct │ │ ├── __init__.py │ │ ├── test_struct_get.py │ │ └── test_to_struct.py │ ├── temporal │ │ ├── __init__.py │ │ └── test_temporal.py │ ├── test_between.py │ ├── test_bitwise.py │ ├── test_blackbox_kernels.py │ ├── test_broadcasts.py │ ├── test_concat.py │ ├── test_eval.py │ ├── test_explodes.py │ ├── test_fill.py │ ├── test_filter.py │ ├── test_from_py.py │ ├── test_hash.py │ ├── test_head.py │ ├── test_is_in.py │ ├── test_joins.py │ ├── test_micropartition.py │ ├── test_minhash.py │ ├── test_monotonically_increasing_id.py │ ├── test_partitioning.py │ ├── test_pivot.py │ ├── test_size_bytes.py │ ├── test_sorting.py │ ├── test_table_aggs.py │ ├── test_take.py │ ├── test_tokenize.py │ ├── test_when.py │ └── utf8 │ │ ├── __init__.py │ │ ├── test_capitalize.py │ │ ├── test_compares.py │ │ ├── test_count_matches.py │ │ ├── test_extract.py │ │ ├── test_extract_all.py │ │ ├── test_find.py │ │ ├── test_ilike.py │ │ ├── test_left.py │ │ ├── test_length.py │ │ ├── test_like.py │ │ ├── test_lower.py │ │ ├── test_lpad.py │ │ ├── test_lstrip.py │ │ ├── test_match.py │ │ ├── test_normalize.py │ │ ├── test_repeat.py │ │ ├── test_replace.py │ │ ├── test_reverse.py │ │ ├── test_right.py │ │ ├── test_rpad.py │ │ ├── test_rstrip.py │ │ ├── test_split.py │ │ ├── test_substr.py │ │ ├── test_to_date.py │ │ ├── test_to_datetime.py │ │ └── test_upper.py ├── series │ ├── __init__.py │ ├── test_arithmetic.py │ ├── test_bitwise.py │ ├── test_cast.py │ ├── test_comparisons.py │ ├── test_concat.py │ ├── test_embedding.py │ ├── test_fill_null.py │ ├── test_filter.py │ ├── test_float.py │ ├── test_hash.py │ ├── test_html_repr.py │ ├── test_if_else.py │ ├── test_image.py │ ├── test_list.py │ ├── test_minhash.py │ ├── test_numeric_ops.py │ ├── test_partitioning.py │ ├── test_series.py │ ├── test_size_bytes.py │ ├── test_slice.py │ ├── test_sort.py │ ├── test_sparse_tensor.py │ ├── test_take.py │ ├── test_temporal_ops.py │ ├── test_tensor.py │ └── test_utf8_ops.py ├── sql │ ├── __init__.py │ ├── set_ops.py │ ├── test_aggs.py │ ├── test_binary_op_exprs.py │ ├── test_coalesce.py │ ├── test_describe.py │ ├── test_exprs.py │ ├── test_float_exprs.py │ ├── test_joins.py │ ├── test_limit_offset.py │ ├── test_list_exprs.py │ ├── test_nested_access.py │ ├── test_orderbys.py │ ├── test_partitioning_exprs.py │ ├── test_select_expr.py │ ├── test_sess_sql.py │ ├── test_sql.py │ ├── test_sql_catalog.py │ ├── test_sql_identifiers.py │ ├── test_sql_null_safe_equals.py │ ├── test_sql_read_iceberg.py │ ├── test_sql_show_tables.py │ ├── test_sql_table_functions.py │ ├── test_sql_udfs.py │ ├── test_temporal_exprs.py │ ├── test_uri_exprs.py │ ├── test_utf8_exprs.py │ └── test_window.py ├── test_context.py ├── test_datatype_inference.py ├── test_datatypes.py ├── test_import.py ├── test_logger.py ├── test_resource_requests.py ├── test_scarf_telemetry.py ├── test_schema.py ├── test_session.py ├── test_size_estimations.py ├── test_subscribers.py ├── udf │ ├── test_batch_udf.py │ ├── test_cls.py │ ├── test_generator_udf.py │ ├── test_row_wise_udf.py │ └── test_udf_metrics.py ├── udf_library │ ├── __init__.py │ └── test_url_udfs.py ├── utils.py └── window │ ├── test_order_by_only.py │ ├── test_partition_only.py │ ├── test_partition_order_by_agg.py │ ├── test_partition_order_by_lag_lead.py │ ├── test_partition_order_by_rank.py │ └── test_running_agg.py ├── tools ├── __init__.py ├── aggregate_test_durations.py ├── attach_debugger.py ├── capture-durations.sh ├── check_invalid_deps.sh ├── ci_bench_utils.py ├── gha_run_cluster_job.py ├── git_utils.py └── observability │ └── opentelemetry │ ├── README.md │ ├── docker-compose.yml │ ├── otelcol-config.yml │ └── prometheus.yml ├── tutorials ├── .gitignore ├── common_crawl │ └── getting_started_with_common_crawl.ipynb ├── delta_lake │ ├── 1-local-image-batch-inference.ipynb │ ├── 2-distributed-batch-inference.ipynb │ └── 3-pytorch-ray-single-node-training.ipynb ├── document_processing │ └── document_processing_tutorial.ipynb ├── embeddings │ └── daft_tutorial_embeddings_stackexchange.ipynb ├── flyte │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── app.py │ └── notebook.ipynb ├── image_querying │ └── top_n_red_color.ipynb ├── intro.ipynb ├── minhash_dedupe │ └── minhash_dedupe_common_crawl.ipynb ├── mnist.ipynb ├── talks_and_demos │ ├── data-ai-summit-2024.ipynb │ ├── iceberg_summit_2024.ipynb │ ├── linkedin-03-05-2024.ipynb │ └── pydata_global_2023.ipynb ├── text_to_image │ ├── text_to_image_generation.ipynb │ └── using_cloud_with_ray.ipynb └── window_functions │ ├── image1.jpeg │ ├── image2.jpeg │ └── window_functions.ipynb └── uv.lock /.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [env] 2 | PYO3_PYTHON = "./.venv/bin/python" 3 | -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/assets/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/.github/assets/template.yaml -------------------------------------------------------------------------------- /.github/assets/tpch-bench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/.github/assets/tpch-bench.yaml -------------------------------------------------------------------------------- /.github/ci-scripts/local_tpch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/.github/ci-scripts/local_tpch.py -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/build-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/.github/workflows/build-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/.gitignore -------------------------------------------------------------------------------- /.lldbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/.lldbinit -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/.ruff.toml -------------------------------------------------------------------------------- /.vscode/launch-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/.vscode/launch-example.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | AGENTS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/assets/benchmark.png -------------------------------------------------------------------------------- /benchmarking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarking/ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/ai/README.md -------------------------------------------------------------------------------- /benchmarking/parquet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/parquet/README.md -------------------------------------------------------------------------------- /benchmarking/parquet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarking/parquet/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/parquet/conftest.py -------------------------------------------------------------------------------- /benchmarking/tpcds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarking/tpcds/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpcds/__main__.py -------------------------------------------------------------------------------- /benchmarking/tpcds/datagen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpcds/datagen.py -------------------------------------------------------------------------------- /benchmarking/tpcds/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpcds/helpers.py -------------------------------------------------------------------------------- /benchmarking/tpch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarking/tpch/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/__main__.py -------------------------------------------------------------------------------- /benchmarking/tpch/answers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/answers.py -------------------------------------------------------------------------------- /benchmarking/tpch/answers_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/answers_sql.py -------------------------------------------------------------------------------- /benchmarking/tpch/queries/01.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/01.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/02.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/02.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/03.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/03.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/04.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/04.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/05.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/05.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/06.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/06.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/07.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/07.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/08.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/08.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/09.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/09.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/10.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/11.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/12.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/13.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/14.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/15.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/16.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/16.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/17.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/17.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/18.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/18.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/19.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/19.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/20.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/20.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/21.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/21.sql -------------------------------------------------------------------------------- /benchmarking/tpch/queries/22.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/tpch/queries/22.sql -------------------------------------------------------------------------------- /benchmarking/vllm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/vllm/README.md -------------------------------------------------------------------------------- /benchmarking/vllm/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/vllm/config.py -------------------------------------------------------------------------------- /benchmarking/vllm/naive-batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/vllm/naive-batch.py -------------------------------------------------------------------------------- /benchmarking/vllm/ray-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/benchmarking/vllm/ray-data.py -------------------------------------------------------------------------------- /ci/upload_wheels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/ci/upload_wheels.sh -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/codecov.yml -------------------------------------------------------------------------------- /daft/.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/.ruff.toml -------------------------------------------------------------------------------- /daft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/__init__.py -------------------------------------------------------------------------------- /daft/ai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/ai/__init__.py -------------------------------------------------------------------------------- /daft/ai/_expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/ai/_expressions.py -------------------------------------------------------------------------------- /daft/ai/google/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daft/ai/google/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daft/ai/google/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/ai/google/provider.py -------------------------------------------------------------------------------- /daft/ai/google/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/ai/google/typing.py -------------------------------------------------------------------------------- /daft/ai/lm_studio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daft/ai/lm_studio/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/ai/lm_studio/provider.py -------------------------------------------------------------------------------- /daft/ai/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/ai/metrics.py -------------------------------------------------------------------------------- /daft/ai/openai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daft/ai/openai/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daft/ai/openai/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/ai/openai/provider.py -------------------------------------------------------------------------------- /daft/ai/openai/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/ai/openai/typing.py -------------------------------------------------------------------------------- /daft/ai/protocols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/ai/protocols.py -------------------------------------------------------------------------------- /daft/ai/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/ai/provider.py -------------------------------------------------------------------------------- /daft/ai/transformers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daft/ai/transformers/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daft/ai/transformers/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/ai/transformers/provider.py -------------------------------------------------------------------------------- /daft/ai/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/ai/typing.py -------------------------------------------------------------------------------- /daft/ai/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/ai/utils.py -------------------------------------------------------------------------------- /daft/ai/vllm/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/ai/vllm/provider.py -------------------------------------------------------------------------------- /daft/api_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/api_annotations.py -------------------------------------------------------------------------------- /daft/arrow_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/arrow_utils.py -------------------------------------------------------------------------------- /daft/catalog/__glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/catalog/__glue.py -------------------------------------------------------------------------------- /daft/catalog/__iceberg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/catalog/__iceberg.py -------------------------------------------------------------------------------- /daft/catalog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/catalog/__init__.py -------------------------------------------------------------------------------- /daft/catalog/__internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/catalog/__internal.py -------------------------------------------------------------------------------- /daft/catalog/__postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/catalog/__postgres.py -------------------------------------------------------------------------------- /daft/catalog/__s3tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/catalog/__s3tables.py -------------------------------------------------------------------------------- /daft/catalog/__unity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/catalog/__unity.py -------------------------------------------------------------------------------- /daft/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/cli.py -------------------------------------------------------------------------------- /daft/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/context.py -------------------------------------------------------------------------------- /daft/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/convert.py -------------------------------------------------------------------------------- /daft/daft/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/daft/__init__.pyi -------------------------------------------------------------------------------- /daft/daft/dashboard.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/daft/dashboard.pyi -------------------------------------------------------------------------------- /daft/daft/testing.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/daft/testing.pyi -------------------------------------------------------------------------------- /daft/dataframe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/dataframe/__init__.py -------------------------------------------------------------------------------- /daft/dataframe/dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/dataframe/dataframe.py -------------------------------------------------------------------------------- /daft/dataframe/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/dataframe/display.py -------------------------------------------------------------------------------- /daft/dataframe/preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/dataframe/preview.py -------------------------------------------------------------------------------- /daft/dataframe/to_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/dataframe/to_torch.py -------------------------------------------------------------------------------- /daft/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/datasets/__init__.py -------------------------------------------------------------------------------- /daft/datasets/common_crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/datasets/common_crawl.py -------------------------------------------------------------------------------- /daft/datatype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/datatype.py -------------------------------------------------------------------------------- /daft/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/dependencies.py -------------------------------------------------------------------------------- /daft/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/errors.py -------------------------------------------------------------------------------- /daft/event_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/event_loop.py -------------------------------------------------------------------------------- /daft/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/exceptions.py -------------------------------------------------------------------------------- /daft/execution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daft/execution/udf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/execution/udf.py -------------------------------------------------------------------------------- /daft/execution/udf_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/execution/udf_worker.py -------------------------------------------------------------------------------- /daft/execution/vllm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/execution/vllm.py -------------------------------------------------------------------------------- /daft/expressions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/expressions/__init__.py -------------------------------------------------------------------------------- /daft/expressions/expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/expressions/expressions.py -------------------------------------------------------------------------------- /daft/expressions/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/expressions/testing.py -------------------------------------------------------------------------------- /daft/expressions/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/expressions/visitor.py -------------------------------------------------------------------------------- /daft/extension_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/extension_type.py -------------------------------------------------------------------------------- /daft/file/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/file/__init__.py -------------------------------------------------------------------------------- /daft/file/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/file/audio.py -------------------------------------------------------------------------------- /daft/file/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/file/file.py -------------------------------------------------------------------------------- /daft/file/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/file/typing.py -------------------------------------------------------------------------------- /daft/file/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/file/video.py -------------------------------------------------------------------------------- /daft/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/filesystem.py -------------------------------------------------------------------------------- /daft/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/__init__.py -------------------------------------------------------------------------------- /daft/functions/agg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/agg.py -------------------------------------------------------------------------------- /daft/functions/ai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/ai/__init__.py -------------------------------------------------------------------------------- /daft/functions/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/audio.py -------------------------------------------------------------------------------- /daft/functions/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/binary.py -------------------------------------------------------------------------------- /daft/functions/bitwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/bitwise.py -------------------------------------------------------------------------------- /daft/functions/columnar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/columnar.py -------------------------------------------------------------------------------- /daft/functions/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/datetime.py -------------------------------------------------------------------------------- /daft/functions/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/embedding.py -------------------------------------------------------------------------------- /daft/functions/file_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/file_.py -------------------------------------------------------------------------------- /daft/functions/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/image.py -------------------------------------------------------------------------------- /daft/functions/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/list.py -------------------------------------------------------------------------------- /daft/functions/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/llm.py -------------------------------------------------------------------------------- /daft/functions/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/misc.py -------------------------------------------------------------------------------- /daft/functions/numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/numeric.py -------------------------------------------------------------------------------- /daft/functions/partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/partition.py -------------------------------------------------------------------------------- /daft/functions/str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/str.py -------------------------------------------------------------------------------- /daft/functions/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/struct.py -------------------------------------------------------------------------------- /daft/functions/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/url.py -------------------------------------------------------------------------------- /daft/functions/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/video.py -------------------------------------------------------------------------------- /daft/functions/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/functions/window.py -------------------------------------------------------------------------------- /daft/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daft/internal/gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/internal/gpu.py -------------------------------------------------------------------------------- /daft/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/__init__.py -------------------------------------------------------------------------------- /daft/io/__shim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/__shim.py -------------------------------------------------------------------------------- /daft/io/_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/_csv.py -------------------------------------------------------------------------------- /daft/io/_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/_generator.py -------------------------------------------------------------------------------- /daft/io/_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/_json.py -------------------------------------------------------------------------------- /daft/io/_parquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/_parquet.py -------------------------------------------------------------------------------- /daft/io/_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/_range.py -------------------------------------------------------------------------------- /daft/io/_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/_sql.py -------------------------------------------------------------------------------- /daft/io/_warc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/_warc.py -------------------------------------------------------------------------------- /daft/io/av/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/av/__init__.py -------------------------------------------------------------------------------- /daft/io/av/_read_video_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/av/_read_video_frames.py -------------------------------------------------------------------------------- /daft/io/aws_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/aws_config.py -------------------------------------------------------------------------------- /daft/io/bigtable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/bigtable/__init__.py -------------------------------------------------------------------------------- /daft/io/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/catalog.py -------------------------------------------------------------------------------- /daft/io/clickhouse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/clickhouse/__init__.py -------------------------------------------------------------------------------- /daft/io/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/common.py -------------------------------------------------------------------------------- /daft/io/delta_lake/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daft/io/delta_lake/_deltalake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/delta_lake/_deltalake.py -------------------------------------------------------------------------------- /daft/io/delta_lake/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/delta_lake/utils.py -------------------------------------------------------------------------------- /daft/io/file_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/file_path.py -------------------------------------------------------------------------------- /daft/io/hudi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daft/io/hudi/_hudi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/hudi/_hudi.py -------------------------------------------------------------------------------- /daft/io/hudi/hudi_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/hudi/hudi_scan.py -------------------------------------------------------------------------------- /daft/io/hudi/pyhudi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daft/io/hudi/pyhudi/filegroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/hudi/pyhudi/filegroup.py -------------------------------------------------------------------------------- /daft/io/hudi/pyhudi/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/hudi/pyhudi/table.py -------------------------------------------------------------------------------- /daft/io/hudi/pyhudi/timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/hudi/pyhudi/timeline.py -------------------------------------------------------------------------------- /daft/io/hudi/pyhudi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/hudi/pyhudi/utils.py -------------------------------------------------------------------------------- /daft/io/huggingface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/huggingface/__init__.py -------------------------------------------------------------------------------- /daft/io/huggingface/sink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/huggingface/sink.py -------------------------------------------------------------------------------- /daft/io/iceberg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daft/io/iceberg/_iceberg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/iceberg/_iceberg.py -------------------------------------------------------------------------------- /daft/io/iceberg/iceberg_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/iceberg/iceberg_scan.py -------------------------------------------------------------------------------- /daft/io/iceberg/iceberg_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/iceberg/iceberg_write.py -------------------------------------------------------------------------------- /daft/io/lance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/lance/__init__.py -------------------------------------------------------------------------------- /daft/io/lance/_lance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/lance/_lance.py -------------------------------------------------------------------------------- /daft/io/lance/lance_data_sink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/lance/lance_data_sink.py -------------------------------------------------------------------------------- /daft/io/lance/lance_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/lance/lance_scan.py -------------------------------------------------------------------------------- /daft/io/lance/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/lance/utils.py -------------------------------------------------------------------------------- /daft/io/mcap/_mcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/mcap/_mcap.py -------------------------------------------------------------------------------- /daft/io/object_store_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/object_store_options.py -------------------------------------------------------------------------------- /daft/io/partitioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/partitioning.py -------------------------------------------------------------------------------- /daft/io/pushdowns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/pushdowns.py -------------------------------------------------------------------------------- /daft/io/scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/scan.py -------------------------------------------------------------------------------- /daft/io/sink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/sink.py -------------------------------------------------------------------------------- /daft/io/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/source.py -------------------------------------------------------------------------------- /daft/io/turbopuffer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/turbopuffer/__init__.py -------------------------------------------------------------------------------- /daft/io/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/io/writer.py -------------------------------------------------------------------------------- /daft/lazy_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/lazy_import.py -------------------------------------------------------------------------------- /daft/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/logging.py -------------------------------------------------------------------------------- /daft/logical/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daft/logical/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/logical/builder.py -------------------------------------------------------------------------------- /daft/logical/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/logical/schema.py -------------------------------------------------------------------------------- /daft/pickle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/pickle/__init__.py -------------------------------------------------------------------------------- /daft/pickle/cloudpickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/pickle/cloudpickle.py -------------------------------------------------------------------------------- /daft/pickle/cloudpickle_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/pickle/cloudpickle_fast.py -------------------------------------------------------------------------------- /daft/pickle/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/pickle/pickle.py -------------------------------------------------------------------------------- /daft/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daft/recordbatch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/recordbatch/__init__.py -------------------------------------------------------------------------------- /daft/recordbatch/partitioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/recordbatch/partitioning.py -------------------------------------------------------------------------------- /daft/recordbatch/recordbatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/recordbatch/recordbatch.py -------------------------------------------------------------------------------- /daft/runners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/runners/__init__.py -------------------------------------------------------------------------------- /daft/runners/flotilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/runners/flotilla.py -------------------------------------------------------------------------------- /daft/runners/native_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/runners/native_runner.py -------------------------------------------------------------------------------- /daft/runners/partitioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/runners/partitioning.py -------------------------------------------------------------------------------- /daft/runners/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/runners/profiler.py -------------------------------------------------------------------------------- /daft/runners/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/runners/progress_bar.py -------------------------------------------------------------------------------- /daft/runners/ray_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/runners/ray_runner.py -------------------------------------------------------------------------------- /daft/runners/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/runners/runner.py -------------------------------------------------------------------------------- /daft/runners/runner_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/runners/runner_io.py -------------------------------------------------------------------------------- /daft/scarf_telemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/scarf_telemetry.py -------------------------------------------------------------------------------- /daft/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/schema.py -------------------------------------------------------------------------------- /daft/series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/series.py -------------------------------------------------------------------------------- /daft/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/session.py -------------------------------------------------------------------------------- /daft/sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/sql/__init__.py -------------------------------------------------------------------------------- /daft/sql/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/sql/sql.py -------------------------------------------------------------------------------- /daft/sql/sql_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/sql/sql_connection.py -------------------------------------------------------------------------------- /daft/sql/sql_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/sql/sql_scan.py -------------------------------------------------------------------------------- /daft/subscribers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/subscribers/__init__.py -------------------------------------------------------------------------------- /daft/subscribers/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/subscribers/abc.py -------------------------------------------------------------------------------- /daft/subscribers/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/subscribers/dashboard.py -------------------------------------------------------------------------------- /daft/udf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/udf/__init__.py -------------------------------------------------------------------------------- /daft/udf/execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/udf/execution.py -------------------------------------------------------------------------------- /daft/udf/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/udf/legacy.py -------------------------------------------------------------------------------- /daft/udf/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/udf/metrics.py -------------------------------------------------------------------------------- /daft/udf/udf_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/udf/udf_v2.py -------------------------------------------------------------------------------- /daft/unity_catalog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/unity_catalog/__init__.py -------------------------------------------------------------------------------- /daft/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/utils.py -------------------------------------------------------------------------------- /daft/viz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/viz/__init__.py -------------------------------------------------------------------------------- /daft/viz/html_viz_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/viz/html_viz_hooks.py -------------------------------------------------------------------------------- /daft/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/daft/window.py -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/ai-functions/classify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/ai-functions/classify.md -------------------------------------------------------------------------------- /docs/ai-functions/embed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/ai-functions/embed.md -------------------------------------------------------------------------------- /docs/ai-functions/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/ai-functions/overview.md -------------------------------------------------------------------------------- /docs/ai-functions/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/ai-functions/prompt.md -------------------------------------------------------------------------------- /docs/ai-functions/providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/ai-functions/providers.md -------------------------------------------------------------------------------- /docs/api/aggregations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/aggregations.md -------------------------------------------------------------------------------- /docs/api/ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/ai.md -------------------------------------------------------------------------------- /docs/api/catalogs_tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/catalogs_tables.md -------------------------------------------------------------------------------- /docs/api/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/config.md -------------------------------------------------------------------------------- /docs/api/dataframe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/dataframe.md -------------------------------------------------------------------------------- /docs/api/datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/datasets.md -------------------------------------------------------------------------------- /docs/api/datatypes/casting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/datatypes/casting.md -------------------------------------------------------------------------------- /docs/api/datatypes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/datatypes/index.md -------------------------------------------------------------------------------- /docs/api/expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/expressions.md -------------------------------------------------------------------------------- /docs/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/index.md -------------------------------------------------------------------------------- /docs/api/io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/io.md -------------------------------------------------------------------------------- /docs/api/misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/misc.md -------------------------------------------------------------------------------- /docs/api/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/schema.md -------------------------------------------------------------------------------- /docs/api/series.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/series.md -------------------------------------------------------------------------------- /docs/api/sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/sessions.md -------------------------------------------------------------------------------- /docs/api/udf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/udf.md -------------------------------------------------------------------------------- /docs/api/window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/api/window.md -------------------------------------------------------------------------------- /docs/architecture/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/architecture/index.md -------------------------------------------------------------------------------- /docs/benchmarks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/benchmarks/index.md -------------------------------------------------------------------------------- /docs/benchmarks/tpch-1000sf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/benchmarks/tpch-1000sf.html -------------------------------------------------------------------------------- /docs/benchmarks/tpch-100sf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/benchmarks/tpch-100sf.html -------------------------------------------------------------------------------- /docs/connectors/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/connectors/aws.md -------------------------------------------------------------------------------- /docs/connectors/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/connectors/azure.md -------------------------------------------------------------------------------- /docs/connectors/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/connectors/custom.md -------------------------------------------------------------------------------- /docs/connectors/delta_lake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/connectors/delta_lake.md -------------------------------------------------------------------------------- /docs/connectors/glue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/connectors/glue.md -------------------------------------------------------------------------------- /docs/connectors/hudi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/connectors/hudi.md -------------------------------------------------------------------------------- /docs/connectors/huggingface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/connectors/huggingface.md -------------------------------------------------------------------------------- /docs/connectors/iceberg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/connectors/iceberg.md -------------------------------------------------------------------------------- /docs/connectors/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/connectors/index.md -------------------------------------------------------------------------------- /docs/connectors/lance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/connectors/lance.md -------------------------------------------------------------------------------- /docs/connectors/postgres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/connectors/postgres.md -------------------------------------------------------------------------------- /docs/connectors/s3tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/connectors/s3tables.md -------------------------------------------------------------------------------- /docs/connectors/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/connectors/sql.md -------------------------------------------------------------------------------- /docs/connectors/turbopuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/connectors/turbopuffer.md -------------------------------------------------------------------------------- /docs/connectors/unity_catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/connectors/unity_catalog.md -------------------------------------------------------------------------------- /docs/contributing/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/contributing/development.md -------------------------------------------------------------------------------- /docs/contributing/overview.md: -------------------------------------------------------------------------------- 1 | ../../CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/css/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/css/docsearch.css -------------------------------------------------------------------------------- /docs/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/css/extra.css -------------------------------------------------------------------------------- /docs/custom-code/apis.md: -------------------------------------------------------------------------------- 1 | # Using External APIs 2 | 3 | User guide coming soon! 4 | -------------------------------------------------------------------------------- /docs/custom-code/cls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/custom-code/cls.md -------------------------------------------------------------------------------- /docs/custom-code/func.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/custom-code/func.md -------------------------------------------------------------------------------- /docs/custom-code/gpu.md: -------------------------------------------------------------------------------- 1 | # Working with GPUs 2 | 3 | User guide coming soon! 4 | -------------------------------------------------------------------------------- /docs/custom-code/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/custom-code/index.md -------------------------------------------------------------------------------- /docs/custom-code/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/custom-code/migration.md -------------------------------------------------------------------------------- /docs/custom-code/udfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/custom-code/udfs.md -------------------------------------------------------------------------------- /docs/datasets/common-crawl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/datasets/common-crawl.md -------------------------------------------------------------------------------- /docs/distributed/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/distributed/index.md -------------------------------------------------------------------------------- /docs/distributed/kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/distributed/kubernetes.md -------------------------------------------------------------------------------- /docs/distributed/ray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/distributed/ray.md -------------------------------------------------------------------------------- /docs/examples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/examples/index.md -------------------------------------------------------------------------------- /docs/examples/minhash-dedupe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/examples/minhash-dedupe.md -------------------------------------------------------------------------------- /docs/examples/mnist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/examples/mnist.md -------------------------------------------------------------------------------- /docs/examples/querying-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/examples/querying-images.md -------------------------------------------------------------------------------- /docs/examples/text-embeddings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/examples/text-embeddings.md -------------------------------------------------------------------------------- /docs/gen_pages/gen_txt_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/gen_pages/gen_txt_files.py -------------------------------------------------------------------------------- /docs/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/hooks.py -------------------------------------------------------------------------------- /docs/img/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/img/architecture.png -------------------------------------------------------------------------------- /docs/img/colab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/img/colab.png -------------------------------------------------------------------------------- /docs/img/daft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/img/daft.png -------------------------------------------------------------------------------- /docs/img/doc_proc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/img/doc_proc.png -------------------------------------------------------------------------------- /docs/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/img/favicon.png -------------------------------------------------------------------------------- /docs/img/flotilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/img/flotilla.png -------------------------------------------------------------------------------- /docs/img/optimizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/img/optimizer.png -------------------------------------------------------------------------------- /docs/img/swordfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/img/swordfish.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/js/custom.js -------------------------------------------------------------------------------- /docs/js/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/js/docsearch.js -------------------------------------------------------------------------------- /docs/js/install-tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/js/install-tool.js -------------------------------------------------------------------------------- /docs/js/readthedocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/js/readthedocs.js -------------------------------------------------------------------------------- /docs/js/reo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/js/reo.js -------------------------------------------------------------------------------- /docs/modalities/audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/modalities/audio.md -------------------------------------------------------------------------------- /docs/modalities/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/modalities/custom.md -------------------------------------------------------------------------------- /docs/modalities/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/modalities/images.md -------------------------------------------------------------------------------- /docs/modalities/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/modalities/json.md -------------------------------------------------------------------------------- /docs/modalities/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/modalities/overview.md -------------------------------------------------------------------------------- /docs/modalities/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/modalities/text.md -------------------------------------------------------------------------------- /docs/modalities/urls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/modalities/urls.md -------------------------------------------------------------------------------- /docs/modalities/videos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/modalities/videos.md -------------------------------------------------------------------------------- /docs/optimization/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/optimization/memory.md -------------------------------------------------------------------------------- /docs/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/overrides/main.html -------------------------------------------------------------------------------- /docs/overrides/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/overrides/partials/toc.html -------------------------------------------------------------------------------- /docs/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/plugins/README.md -------------------------------------------------------------------------------- /docs/plugins/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/plugins/setup.py -------------------------------------------------------------------------------- /docs/quickstart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/quickstart.ipynb -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/roadmap.md -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/robots.txt -------------------------------------------------------------------------------- /docs/sql/datatypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/sql/datatypes.md -------------------------------------------------------------------------------- /docs/sql/identifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/sql/identifiers.md -------------------------------------------------------------------------------- /docs/sql/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/sql/index.md -------------------------------------------------------------------------------- /docs/sql/statements/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/sql/statements/select.md -------------------------------------------------------------------------------- /docs/sql/statements/show.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/sql/statements/show.md -------------------------------------------------------------------------------- /docs/sql/statements/use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/sql/statements/use.md -------------------------------------------------------------------------------- /docs/sql/window_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/sql/window_functions.md -------------------------------------------------------------------------------- /docs/telemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/telemetry.md -------------------------------------------------------------------------------- /docs/use-case/batch-inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/docs/use-case/batch-inference.md -------------------------------------------------------------------------------- /k8s/charts/quickstart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/k8s/charts/quickstart/Chart.yaml -------------------------------------------------------------------------------- /k8s/charts/quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/k8s/charts/quickstart/README.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/arrow2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/Cargo.toml -------------------------------------------------------------------------------- /src/arrow2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/LICENSE -------------------------------------------------------------------------------- /src/arrow2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/README.md -------------------------------------------------------------------------------- /src/arrow2/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/build.rs -------------------------------------------------------------------------------- /src/arrow2/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/README.md -------------------------------------------------------------------------------- /src/arrow2/src/array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/README.md -------------------------------------------------------------------------------- /src/arrow2/src/array/dyn_ord.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/dyn_ord.rs -------------------------------------------------------------------------------- /src/arrow2/src/array/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/ffi.rs -------------------------------------------------------------------------------- /src/arrow2/src/array/fmt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/fmt.rs -------------------------------------------------------------------------------- /src/arrow2/src/array/iterator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/iterator.rs -------------------------------------------------------------------------------- /src/arrow2/src/array/list/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/list/ffi.rs -------------------------------------------------------------------------------- /src/arrow2/src/array/list/fmt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/list/fmt.rs -------------------------------------------------------------------------------- /src/arrow2/src/array/list/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/list/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/array/map/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/map/data.rs -------------------------------------------------------------------------------- /src/arrow2/src/array/map/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/map/ffi.rs -------------------------------------------------------------------------------- /src/arrow2/src/array/map/fmt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/map/fmt.rs -------------------------------------------------------------------------------- /src/arrow2/src/array/map/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/map/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/array/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/array/null.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/null.rs -------------------------------------------------------------------------------- /src/arrow2/src/array/ord.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/ord.rs -------------------------------------------------------------------------------- /src/arrow2/src/array/utf8/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/utf8/ffi.rs -------------------------------------------------------------------------------- /src/arrow2/src/array/utf8/fmt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/utf8/fmt.rs -------------------------------------------------------------------------------- /src/arrow2/src/array/utf8/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/array/utf8/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/bitmap/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/bitmap/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/bitmap/mutable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/bitmap/mutable.rs -------------------------------------------------------------------------------- /src/arrow2/src/buffer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/buffer/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/chunk.rs -------------------------------------------------------------------------------- /src/arrow2/src/compute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/compute/README.md -------------------------------------------------------------------------------- /src/arrow2/src/compute/arity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/compute/arity.rs -------------------------------------------------------------------------------- /src/arrow2/src/compute/filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/compute/filter.rs -------------------------------------------------------------------------------- /src/arrow2/src/compute/hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/compute/hash.rs -------------------------------------------------------------------------------- /src/arrow2/src/compute/length.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/compute/length.rs -------------------------------------------------------------------------------- /src/arrow2/src/compute/like.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/compute/like.rs -------------------------------------------------------------------------------- /src/arrow2/src/compute/limit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/compute/limit.rs -------------------------------------------------------------------------------- /src/arrow2/src/compute/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/compute/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/compute/nullif.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/compute/nullif.rs -------------------------------------------------------------------------------- /src/arrow2/src/compute/utf8.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/compute/utf8.rs -------------------------------------------------------------------------------- /src/arrow2/src/compute/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/compute/utils.rs -------------------------------------------------------------------------------- /src/arrow2/src/compute/window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/compute/window.rs -------------------------------------------------------------------------------- /src/arrow2/src/datatypes/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/datatypes/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/docs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/docs.rs -------------------------------------------------------------------------------- /src/arrow2/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/error.rs -------------------------------------------------------------------------------- /src/arrow2/src/ffi/array.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/ffi/array.rs -------------------------------------------------------------------------------- /src/arrow2/src/ffi/bridge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/ffi/bridge.rs -------------------------------------------------------------------------------- /src/arrow2/src/ffi/generated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/ffi/generated.rs -------------------------------------------------------------------------------- /src/arrow2/src/ffi/mmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/ffi/mmap.rs -------------------------------------------------------------------------------- /src/arrow2/src/ffi/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/ffi/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/ffi/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/ffi/schema.rs -------------------------------------------------------------------------------- /src/arrow2/src/ffi/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/ffi/stream.rs -------------------------------------------------------------------------------- /src/arrow2/src/io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/io/README.md -------------------------------------------------------------------------------- /src/arrow2/src/io/avro/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/io/avro/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/io/csv/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/io/csv/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/io/csv/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/io/csv/utils.rs -------------------------------------------------------------------------------- /src/arrow2/src/io/flight/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/io/flight/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/io/ipc/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/io/ipc/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/io/iterator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/io/iterator.rs -------------------------------------------------------------------------------- /src/arrow2/src/io/json/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/io/json/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/io/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/io/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/io/ndjson/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/io/ndjson/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/io/odbc/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/io/odbc/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/io/orc/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/io/orc/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/io/parquet/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/io/parquet/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/io/print.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/io/print.rs -------------------------------------------------------------------------------- /src/arrow2/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/lib.rs -------------------------------------------------------------------------------- /src/arrow2/src/mmap/array.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/mmap/array.rs -------------------------------------------------------------------------------- /src/arrow2/src/mmap/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/mmap/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/offset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/offset.rs -------------------------------------------------------------------------------- /src/arrow2/src/scalar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/scalar/README.md -------------------------------------------------------------------------------- /src/arrow2/src/scalar/binary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/scalar/binary.rs -------------------------------------------------------------------------------- /src/arrow2/src/scalar/boolean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/scalar/boolean.rs -------------------------------------------------------------------------------- /src/arrow2/src/scalar/equal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/scalar/equal.rs -------------------------------------------------------------------------------- /src/arrow2/src/scalar/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/scalar/list.rs -------------------------------------------------------------------------------- /src/arrow2/src/scalar/map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/scalar/map.rs -------------------------------------------------------------------------------- /src/arrow2/src/scalar/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/scalar/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/scalar/null.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/scalar/null.rs -------------------------------------------------------------------------------- /src/arrow2/src/scalar/struct_.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/scalar/struct_.rs -------------------------------------------------------------------------------- /src/arrow2/src/scalar/union.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/scalar/union.rs -------------------------------------------------------------------------------- /src/arrow2/src/scalar/utf8.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/scalar/utf8.rs -------------------------------------------------------------------------------- /src/arrow2/src/trusted_len.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/trusted_len.rs -------------------------------------------------------------------------------- /src/arrow2/src/types/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/types/index.rs -------------------------------------------------------------------------------- /src/arrow2/src/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/types/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/types/native.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/types/native.rs -------------------------------------------------------------------------------- /src/arrow2/src/types/offset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/types/offset.rs -------------------------------------------------------------------------------- /src/arrow2/src/types/simd/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/types/simd/mod.rs -------------------------------------------------------------------------------- /src/arrow2/src/util/lexical.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/util/lexical.rs -------------------------------------------------------------------------------- /src/arrow2/src/util/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/arrow2/src/util/mod.rs -------------------------------------------------------------------------------- /src/common/arrow-ffi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/arrow-ffi/Cargo.toml -------------------------------------------------------------------------------- /src/common/arrow-ffi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/arrow-ffi/src/lib.rs -------------------------------------------------------------------------------- /src/common/display/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/display/Cargo.toml -------------------------------------------------------------------------------- /src/common/display/src/ascii.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/display/src/ascii.rs -------------------------------------------------------------------------------- /src/common/display/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/display/src/lib.rs -------------------------------------------------------------------------------- /src/common/display/src/tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/display/src/tree.rs -------------------------------------------------------------------------------- /src/common/display/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/display/src/utils.rs -------------------------------------------------------------------------------- /src/common/error/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/error/Cargo.toml -------------------------------------------------------------------------------- /src/common/error/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/error/src/error.rs -------------------------------------------------------------------------------- /src/common/error/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/error/src/lib.rs -------------------------------------------------------------------------------- /src/common/error/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/error/src/python.rs -------------------------------------------------------------------------------- /src/common/image/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/image/Cargo.toml -------------------------------------------------------------------------------- /src/common/image/src/bbox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/image/src/bbox.rs -------------------------------------------------------------------------------- /src/common/image/src/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/image/src/image.rs -------------------------------------------------------------------------------- /src/common/image/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/image/src/lib.rs -------------------------------------------------------------------------------- /src/common/image/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/image/src/python.rs -------------------------------------------------------------------------------- /src/common/io-config/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/io-config/Cargo.toml -------------------------------------------------------------------------------- /src/common/io-config/src/gcs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/io-config/src/gcs.rs -------------------------------------------------------------------------------- /src/common/io-config/src/http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/io-config/src/http.rs -------------------------------------------------------------------------------- /src/common/io-config/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/io-config/src/lib.rs -------------------------------------------------------------------------------- /src/common/io-config/src/s3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/io-config/src/s3.rs -------------------------------------------------------------------------------- /src/common/io-config/src/tos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/io-config/src/tos.rs -------------------------------------------------------------------------------- /src/common/logging/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/logging/Cargo.toml -------------------------------------------------------------------------------- /src/common/logging/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/logging/src/lib.rs -------------------------------------------------------------------------------- /src/common/macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/macros/Cargo.toml -------------------------------------------------------------------------------- /src/common/macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/macros/src/lib.rs -------------------------------------------------------------------------------- /src/common/metrics/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/metrics/Cargo.toml -------------------------------------------------------------------------------- /src/common/metrics/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/metrics/src/lib.rs -------------------------------------------------------------------------------- /src/common/metrics/src/ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/metrics/src/ops.rs -------------------------------------------------------------------------------- /src/common/metrics/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/metrics/src/python.rs -------------------------------------------------------------------------------- /src/common/ndarray/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/ndarray/Cargo.toml -------------------------------------------------------------------------------- /src/common/ndarray/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/ndarray/src/lib.rs -------------------------------------------------------------------------------- /src/common/ndarray/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/ndarray/src/python.rs -------------------------------------------------------------------------------- /src/common/py-serde/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/py-serde/Cargo.toml -------------------------------------------------------------------------------- /src/common/py-serde/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/py-serde/src/lib.rs -------------------------------------------------------------------------------- /src/common/runtime/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/runtime/Cargo.toml -------------------------------------------------------------------------------- /src/common/runtime/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/runtime/src/lib.rs -------------------------------------------------------------------------------- /src/common/runtime/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/runtime/src/python.rs -------------------------------------------------------------------------------- /src/common/scan-info/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/scan-info/Cargo.toml -------------------------------------------------------------------------------- /src/common/scan-info/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/scan-info/src/lib.rs -------------------------------------------------------------------------------- /src/common/tracing/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/tracing/Cargo.toml -------------------------------------------------------------------------------- /src/common/tracing/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/tracing/src/lib.rs -------------------------------------------------------------------------------- /src/common/treenode/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/treenode/Cargo.toml -------------------------------------------------------------------------------- /src/common/treenode/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/treenode/src/lib.rs -------------------------------------------------------------------------------- /src/common/version/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/version/Cargo.toml -------------------------------------------------------------------------------- /src/common/version/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/common/version/src/lib.rs -------------------------------------------------------------------------------- /src/daft-ai/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-ai/Cargo.toml -------------------------------------------------------------------------------- /src/daft-ai/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-ai/src/lib.rs -------------------------------------------------------------------------------- /src/daft-ai/src/provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-ai/src/provider.rs -------------------------------------------------------------------------------- /src/daft-ai/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-ai/src/python.rs -------------------------------------------------------------------------------- /src/daft-algebra/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-algebra/Cargo.toml -------------------------------------------------------------------------------- /src/daft-algebra/src/boolean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-algebra/src/boolean.rs -------------------------------------------------------------------------------- /src/daft-algebra/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-algebra/src/lib.rs -------------------------------------------------------------------------------- /src/daft-arrow/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-arrow/Cargo.toml -------------------------------------------------------------------------------- /src/daft-arrow/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-arrow/src/lib.rs -------------------------------------------------------------------------------- /src/daft-catalog/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-catalog/Cargo.toml -------------------------------------------------------------------------------- /src/daft-catalog/src/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-catalog/src/bindings.rs -------------------------------------------------------------------------------- /src/daft-catalog/src/catalog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-catalog/src/catalog.rs -------------------------------------------------------------------------------- /src/daft-catalog/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-catalog/src/error.rs -------------------------------------------------------------------------------- /src/daft-catalog/src/impls/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod memory; 2 | -------------------------------------------------------------------------------- /src/daft-catalog/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-catalog/src/lib.rs -------------------------------------------------------------------------------- /src/daft-catalog/src/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-catalog/src/table.rs -------------------------------------------------------------------------------- /src/daft-cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-cli/Cargo.toml -------------------------------------------------------------------------------- /src/daft-cli/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-cli/src/lib.rs -------------------------------------------------------------------------------- /src/daft-cli/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-cli/src/python.rs -------------------------------------------------------------------------------- /src/daft-compression/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-compression/Cargo.toml -------------------------------------------------------------------------------- /src/daft-compression/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-compression/src/lib.rs -------------------------------------------------------------------------------- /src/daft-context/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-context/Cargo.toml -------------------------------------------------------------------------------- /src/daft-context/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-context/src/lib.rs -------------------------------------------------------------------------------- /src/daft-context/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-context/src/python.rs -------------------------------------------------------------------------------- /src/daft-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/Cargo.toml -------------------------------------------------------------------------------- /src/daft-core/src/array/from.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/array/from.rs -------------------------------------------------------------------------------- /src/daft-core/src/array/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/array/mod.rs -------------------------------------------------------------------------------- /src/daft-core/src/array/ops/arrow/sort/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod primitive; 2 | -------------------------------------------------------------------------------- /src/daft-core/src/count_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/count_mode.rs -------------------------------------------------------------------------------- /src/daft-core/src/file/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/file/mod.rs -------------------------------------------------------------------------------- /src/daft-core/src/file/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/file/python.rs -------------------------------------------------------------------------------- /src/daft-core/src/join.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/join.rs -------------------------------------------------------------------------------- /src/daft-core/src/kernels/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/kernels/mod.rs -------------------------------------------------------------------------------- /src/daft-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/lib.rs -------------------------------------------------------------------------------- /src/daft-core/src/lit/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/lit/mod.rs -------------------------------------------------------------------------------- /src/daft-core/src/lit/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/lit/python.rs -------------------------------------------------------------------------------- /src/daft-core/src/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/prelude.rs -------------------------------------------------------------------------------- /src/daft-core/src/python/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/python/mod.rs -------------------------------------------------------------------------------- /src/daft-core/src/series/from.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/series/from.rs -------------------------------------------------------------------------------- /src/daft-core/src/series/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/series/mod.rs -------------------------------------------------------------------------------- /src/daft-core/src/utils/arrow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/utils/arrow.rs -------------------------------------------------------------------------------- /src/daft-core/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/utils/mod.rs -------------------------------------------------------------------------------- /src/daft-core/src/utils/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-core/src/utils/stats.rs -------------------------------------------------------------------------------- /src/daft-csv/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-csv/Cargo.toml -------------------------------------------------------------------------------- /src/daft-csv/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-csv/src/lib.rs -------------------------------------------------------------------------------- /src/daft-csv/src/local.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-csv/src/local.rs -------------------------------------------------------------------------------- /src/daft-csv/src/local/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-csv/src/local/pool.rs -------------------------------------------------------------------------------- /src/daft-csv/src/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-csv/src/metadata.rs -------------------------------------------------------------------------------- /src/daft-csv/src/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-csv/src/options.rs -------------------------------------------------------------------------------- /src/daft-csv/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-csv/src/python.rs -------------------------------------------------------------------------------- /src/daft-csv/src/read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-csv/src/read.rs -------------------------------------------------------------------------------- /src/daft-csv/src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-csv/src/schema.rs -------------------------------------------------------------------------------- /src/daft-csv/test/iris_tiny.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-csv/test/iris_tiny.csv -------------------------------------------------------------------------------- /src/daft-dashboard/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dashboard/Cargo.toml -------------------------------------------------------------------------------- /src/daft-dashboard/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dashboard/build.rs -------------------------------------------------------------------------------- /src/daft-dashboard/src/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dashboard/src/assets.rs -------------------------------------------------------------------------------- /src/daft-dashboard/src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dashboard/src/client.rs -------------------------------------------------------------------------------- /src/daft-dashboard/src/engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dashboard/src/engine.rs -------------------------------------------------------------------------------- /src/daft-dashboard/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dashboard/src/lib.rs -------------------------------------------------------------------------------- /src/daft-dashboard/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dashboard/src/python.rs -------------------------------------------------------------------------------- /src/daft-dashboard/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dashboard/src/state.rs -------------------------------------------------------------------------------- /src/daft-decoding/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-decoding/Cargo.toml -------------------------------------------------------------------------------- /src/daft-decoding/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-decoding/src/lib.rs -------------------------------------------------------------------------------- /src/daft-distributed/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-distributed/Cargo.toml -------------------------------------------------------------------------------- /src/daft-distributed/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-distributed/src/lib.rs -------------------------------------------------------------------------------- /src/daft-dsl/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dsl/Cargo.toml -------------------------------------------------------------------------------- /src/daft-dsl/src/expr/agg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dsl/src/expr/agg.rs -------------------------------------------------------------------------------- /src/daft-dsl/src/expr/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dsl/src/expr/display.rs -------------------------------------------------------------------------------- /src/daft-dsl/src/expr/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dsl/src/expr/mod.rs -------------------------------------------------------------------------------- /src/daft-dsl/src/expr/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dsl/src/expr/tests.rs -------------------------------------------------------------------------------- /src/daft-dsl/src/expr/window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dsl/src/expr/window.rs -------------------------------------------------------------------------------- /src/daft-dsl/src/join.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dsl/src/join.rs -------------------------------------------------------------------------------- /src/daft-dsl/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dsl/src/lib.rs -------------------------------------------------------------------------------- /src/daft-dsl/src/optimization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dsl/src/optimization.rs -------------------------------------------------------------------------------- /src/daft-dsl/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dsl/src/python.rs -------------------------------------------------------------------------------- /src/daft-dsl/src/treenode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dsl/src/treenode.rs -------------------------------------------------------------------------------- /src/daft-dsl/src/visitor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-dsl/src/visitor.rs -------------------------------------------------------------------------------- /src/daft-file/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-file/Cargo.toml -------------------------------------------------------------------------------- /src/daft-file/src/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-file/src/file.rs -------------------------------------------------------------------------------- /src/daft-file/src/functions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-file/src/functions.rs -------------------------------------------------------------------------------- /src/daft-file/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-file/src/lib.rs -------------------------------------------------------------------------------- /src/daft-file/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-file/src/python.rs -------------------------------------------------------------------------------- /src/daft-functions/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-functions/Cargo.toml -------------------------------------------------------------------------------- /src/daft-functions/src/hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-functions/src/hash.rs -------------------------------------------------------------------------------- /src/daft-functions/src/length.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-functions/src/length.rs -------------------------------------------------------------------------------- /src/daft-functions/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-functions/src/lib.rs -------------------------------------------------------------------------------- /src/daft-functions/src/slice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-functions/src/slice.rs -------------------------------------------------------------------------------- /src/daft-hash/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-hash/Cargo.toml -------------------------------------------------------------------------------- /src/daft-hash/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-hash/src/lib.rs -------------------------------------------------------------------------------- /src/daft-image/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-image/Cargo.toml -------------------------------------------------------------------------------- /src/daft-image/src/iters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-image/src/iters.rs -------------------------------------------------------------------------------- /src/daft-image/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-image/src/lib.rs -------------------------------------------------------------------------------- /src/daft-image/src/ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-image/src/ops.rs -------------------------------------------------------------------------------- /src/daft-image/src/series.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-image/src/series.rs -------------------------------------------------------------------------------- /src/daft-io/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/Cargo.toml -------------------------------------------------------------------------------- /src/daft-io/src/azure_blob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/src/azure_blob.rs -------------------------------------------------------------------------------- /src/daft-io/src/google_cloud.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/src/google_cloud.rs -------------------------------------------------------------------------------- /src/daft-io/src/http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/src/http.rs -------------------------------------------------------------------------------- /src/daft-io/src/huggingface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/src/huggingface.rs -------------------------------------------------------------------------------- /src/daft-io/src/integrations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/src/integrations.rs -------------------------------------------------------------------------------- /src/daft-io/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/src/lib.rs -------------------------------------------------------------------------------- /src/daft-io/src/local.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/src/local.rs -------------------------------------------------------------------------------- /src/daft-io/src/object_io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/src/object_io.rs -------------------------------------------------------------------------------- /src/daft-io/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/src/python.rs -------------------------------------------------------------------------------- /src/daft-io/src/range.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/src/range.rs -------------------------------------------------------------------------------- /src/daft-io/src/retry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/src/retry.rs -------------------------------------------------------------------------------- /src/daft-io/src/s3_like.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/src/s3_like.rs -------------------------------------------------------------------------------- /src/daft-io/src/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/src/stats.rs -------------------------------------------------------------------------------- /src/daft-io/src/stream_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/src/stream_utils.rs -------------------------------------------------------------------------------- /src/daft-io/src/tos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/src/tos.rs -------------------------------------------------------------------------------- /src/daft-io/src/unity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-io/src/unity.rs -------------------------------------------------------------------------------- /src/daft-json/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-json/Cargo.toml -------------------------------------------------------------------------------- /src/daft-json/src/decoding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-json/src/decoding.rs -------------------------------------------------------------------------------- /src/daft-json/src/inference.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-json/src/inference.rs -------------------------------------------------------------------------------- /src/daft-json/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-json/src/lib.rs -------------------------------------------------------------------------------- /src/daft-json/src/local.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-json/src/local.rs -------------------------------------------------------------------------------- /src/daft-json/src/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-json/src/options.rs -------------------------------------------------------------------------------- /src/daft-json/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-json/src/python.rs -------------------------------------------------------------------------------- /src/daft-json/src/read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-json/src/read.rs -------------------------------------------------------------------------------- /src/daft-json/src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-json/src/schema.rs -------------------------------------------------------------------------------- /src/daft-json/test/dtypes.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-json/test/dtypes.jsonl -------------------------------------------------------------------------------- /src/daft-local-plan/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-local-plan/Cargo.toml -------------------------------------------------------------------------------- /src/daft-local-plan/src/agg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-local-plan/src/agg.rs -------------------------------------------------------------------------------- /src/daft-local-plan/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-local-plan/src/lib.rs -------------------------------------------------------------------------------- /src/daft-local-plan/src/plan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-local-plan/src/plan.rs -------------------------------------------------------------------------------- /src/daft-logical-plan/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-logical-plan/Cargo.toml -------------------------------------------------------------------------------- /src/daft-logical-plan/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-logical-plan/src/lib.rs -------------------------------------------------------------------------------- /src/daft-minhash/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-minhash/Cargo.toml -------------------------------------------------------------------------------- /src/daft-minhash/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-minhash/build.rs -------------------------------------------------------------------------------- /src/daft-minhash/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-minhash/src/lib.rs -------------------------------------------------------------------------------- /src/daft-minhash/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-minhash/src/tests.rs -------------------------------------------------------------------------------- /src/daft-minhash/src/windowed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-minhash/src/windowed.rs -------------------------------------------------------------------------------- /src/daft-parquet/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-parquet/Cargo.toml -------------------------------------------------------------------------------- /src/daft-parquet/src/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-parquet/src/file.rs -------------------------------------------------------------------------------- /src/daft-parquet/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-parquet/src/lib.rs -------------------------------------------------------------------------------- /src/daft-parquet/src/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-parquet/src/metadata.rs -------------------------------------------------------------------------------- /src/daft-parquet/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-parquet/src/python.rs -------------------------------------------------------------------------------- /src/daft-parquet/src/read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-parquet/src/read.rs -------------------------------------------------------------------------------- /src/daft-recordbatch/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-recordbatch/Cargo.toml -------------------------------------------------------------------------------- /src/daft-recordbatch/src/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-recordbatch/src/ffi.rs -------------------------------------------------------------------------------- /src/daft-recordbatch/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-recordbatch/src/lib.rs -------------------------------------------------------------------------------- /src/daft-runners/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-runners/Cargo.toml -------------------------------------------------------------------------------- /src/daft-runners/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-runners/src/lib.rs -------------------------------------------------------------------------------- /src/daft-runners/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-runners/src/python.rs -------------------------------------------------------------------------------- /src/daft-runners/src/runners.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-runners/src/runners.rs -------------------------------------------------------------------------------- /src/daft-scan/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-scan/Cargo.toml -------------------------------------------------------------------------------- /src/daft-scan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-scan/README.md -------------------------------------------------------------------------------- /src/daft-scan/src/anonymous.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-scan/src/anonymous.rs -------------------------------------------------------------------------------- /src/daft-scan/src/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-scan/src/builder.rs -------------------------------------------------------------------------------- /src/daft-scan/src/glob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-scan/src/glob.rs -------------------------------------------------------------------------------- /src/daft-scan/src/hive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-scan/src/hive.rs -------------------------------------------------------------------------------- /src/daft-scan/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-scan/src/lib.rs -------------------------------------------------------------------------------- /src/daft-scan/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-scan/src/python.rs -------------------------------------------------------------------------------- /src/daft-schema/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-schema/Cargo.toml -------------------------------------------------------------------------------- /src/daft-schema/src/dtype.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-schema/src/dtype.rs -------------------------------------------------------------------------------- /src/daft-schema/src/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-schema/src/field.rs -------------------------------------------------------------------------------- /src/daft-schema/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-schema/src/lib.rs -------------------------------------------------------------------------------- /src/daft-schema/src/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-schema/src/prelude.rs -------------------------------------------------------------------------------- /src/daft-schema/src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-schema/src/schema.rs -------------------------------------------------------------------------------- /src/daft-schema/src/time_unit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-schema/src/time_unit.rs -------------------------------------------------------------------------------- /src/daft-session/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-session/Cargo.toml -------------------------------------------------------------------------------- /src/daft-session/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-session/src/error.rs -------------------------------------------------------------------------------- /src/daft-session/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-session/src/lib.rs -------------------------------------------------------------------------------- /src/daft-session/src/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-session/src/options.rs -------------------------------------------------------------------------------- /src/daft-session/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-session/src/python.rs -------------------------------------------------------------------------------- /src/daft-session/src/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-session/src/session.rs -------------------------------------------------------------------------------- /src/daft-shuffles/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-shuffles/Cargo.toml -------------------------------------------------------------------------------- /src/daft-shuffles/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-shuffles/src/lib.rs -------------------------------------------------------------------------------- /src/daft-shuffles/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-shuffles/src/python.rs -------------------------------------------------------------------------------- /src/daft-shuffles/src/server/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod flight_server; 2 | mod stream; 3 | -------------------------------------------------------------------------------- /src/daft-sketch/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-sketch/Cargo.toml -------------------------------------------------------------------------------- /src/daft-sketch/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-sketch/src/lib.rs -------------------------------------------------------------------------------- /src/daft-sql/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-sql/Cargo.toml -------------------------------------------------------------------------------- /src/daft-sql/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-sql/src/error.rs -------------------------------------------------------------------------------- /src/daft-sql/src/exec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-sql/src/exec.rs -------------------------------------------------------------------------------- /src/daft-sql/src/functions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-sql/src/functions.rs -------------------------------------------------------------------------------- /src/daft-sql/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-sql/src/lib.rs -------------------------------------------------------------------------------- /src/daft-sql/src/modules/aggs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-sql/src/modules/aggs.rs -------------------------------------------------------------------------------- /src/daft-sql/src/modules/map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-sql/src/modules/map.rs -------------------------------------------------------------------------------- /src/daft-sql/src/modules/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-sql/src/modules/mod.rs -------------------------------------------------------------------------------- /src/daft-sql/src/planner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-sql/src/planner.rs -------------------------------------------------------------------------------- /src/daft-sql/src/python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-sql/src/python.rs -------------------------------------------------------------------------------- /src/daft-sql/src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-sql/src/schema.rs -------------------------------------------------------------------------------- /src/daft-sql/src/statement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-sql/src/statement.rs -------------------------------------------------------------------------------- /src/daft-stats/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-stats/Cargo.toml -------------------------------------------------------------------------------- /src/daft-stats/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-stats/src/lib.rs -------------------------------------------------------------------------------- /src/daft-warc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-warc/Cargo.toml -------------------------------------------------------------------------------- /src/daft-warc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-warc/src/lib.rs -------------------------------------------------------------------------------- /src/daft-warc/test/example.warc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-warc/test/example.warc -------------------------------------------------------------------------------- /src/daft-writers/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-writers/Cargo.toml -------------------------------------------------------------------------------- /src/daft-writers/src/batch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-writers/src/batch.rs -------------------------------------------------------------------------------- /src/daft-writers/src/catalog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-writers/src/catalog.rs -------------------------------------------------------------------------------- /src/daft-writers/src/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-writers/src/file.rs -------------------------------------------------------------------------------- /src/daft-writers/src/ipc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-writers/src/ipc.rs -------------------------------------------------------------------------------- /src/daft-writers/src/lance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-writers/src/lance.rs -------------------------------------------------------------------------------- /src/daft-writers/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-writers/src/lib.rs -------------------------------------------------------------------------------- /src/daft-writers/src/physical.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-writers/src/physical.rs -------------------------------------------------------------------------------- /src/daft-writers/src/pyarrow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-writers/src/pyarrow.rs -------------------------------------------------------------------------------- /src/daft-writers/src/sink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-writers/src/sink.rs -------------------------------------------------------------------------------- /src/daft-writers/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-writers/src/test.rs -------------------------------------------------------------------------------- /src/daft-writers/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/daft-writers/src/utils.rs -------------------------------------------------------------------------------- /src/hyperloglog/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/hyperloglog/Cargo.toml -------------------------------------------------------------------------------- /src/hyperloglog/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/hyperloglog/src/lib.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/parquet-format-safe/.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | /target 3 | **/*.rs.bk 4 | parquet.thrift 5 | -------------------------------------------------------------------------------- /src/parquet2/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | .idea 4 | venv 5 | fixtures/ 6 | -------------------------------------------------------------------------------- /src/parquet2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/Cargo.toml -------------------------------------------------------------------------------- /src/parquet2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/LICENSE -------------------------------------------------------------------------------- /src/parquet2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/README.md -------------------------------------------------------------------------------- /src/parquet2/src/compression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/src/compression.rs -------------------------------------------------------------------------------- /src/parquet2/src/encoding/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/src/encoding/mod.rs -------------------------------------------------------------------------------- /src/parquet2/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/src/error.rs -------------------------------------------------------------------------------- /src/parquet2/src/indexes/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/src/indexes/mod.rs -------------------------------------------------------------------------------- /src/parquet2/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/src/lib.rs -------------------------------------------------------------------------------- /src/parquet2/src/metadata/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/src/metadata/mod.rs -------------------------------------------------------------------------------- /src/parquet2/src/page/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/src/page/mod.rs -------------------------------------------------------------------------------- /src/parquet2/src/read/levels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/src/read/levels.rs -------------------------------------------------------------------------------- /src/parquet2/src/read/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/src/read/mod.rs -------------------------------------------------------------------------------- /src/parquet2/src/read/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/src/read/stream.rs -------------------------------------------------------------------------------- /src/parquet2/src/schema/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/src/schema/mod.rs -------------------------------------------------------------------------------- /src/parquet2/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/src/types.rs -------------------------------------------------------------------------------- /src/parquet2/src/write/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/src/write/file.rs -------------------------------------------------------------------------------- /src/parquet2/src/write/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/src/write/mod.rs -------------------------------------------------------------------------------- /src/parquet2/src/write/page.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/src/write/page.rs -------------------------------------------------------------------------------- /src/parquet2/src/write/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/src/parquet2/src/write/stream.rs -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/actor_pool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ai/openai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ai/test_lm_studio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/ai/test_lm_studio.py -------------------------------------------------------------------------------- /tests/ai/transformers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/assets/__init__.py -------------------------------------------------------------------------------- /tests/assets/example.warc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/assets/example.warc -------------------------------------------------------------------------------- /tests/assets/example.warc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/assets/example.warc.gz -------------------------------------------------------------------------------- /tests/assets/json-data/baddata1.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/assets/json-data/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assets/mvp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/assets/mvp.csv -------------------------------------------------------------------------------- /tests/assets/sample_audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/assets/sample_audio.mp3 -------------------------------------------------------------------------------- /tests/assets/sample_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/assets/sample_video.mp4 -------------------------------------------------------------------------------- /tests/assets/sampled-tpch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/assets/sampled-tpch.csv -------------------------------------------------------------------------------- /tests/assets/sampled-tpch.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/assets/sampled-tpch.jsonl -------------------------------------------------------------------------------- /tests/assets/tokens/empty.tiktoken: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assets/tpch-sqlite-queries/README.md: -------------------------------------------------------------------------------- 1 | Adapted from: https://github.com/tarantool/tpch 2 | -------------------------------------------------------------------------------- /tests/benchmarks/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/benchmarks/conftest.py -------------------------------------------------------------------------------- /tests/catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/catalog/test_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/catalog/test_catalog.py -------------------------------------------------------------------------------- /tests/catalog/test_glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/catalog/test_glue.py -------------------------------------------------------------------------------- /tests/catalog/test_iceberg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/catalog/test_iceberg.py -------------------------------------------------------------------------------- /tests/catalog/test_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/catalog/test_identifier.py -------------------------------------------------------------------------------- /tests/catalog/test_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/catalog/test_memory.py -------------------------------------------------------------------------------- /tests/catalog/test_s3tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/catalog/test_s3tables.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/cookbook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cookbook/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/cookbook/conftest.py -------------------------------------------------------------------------------- /tests/cookbook/test_distinct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/cookbook/test_distinct.py -------------------------------------------------------------------------------- /tests/cookbook/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/cookbook/test_filter.py -------------------------------------------------------------------------------- /tests/cookbook/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/cookbook/test_image.py -------------------------------------------------------------------------------- /tests/cookbook/test_joins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/cookbook/test_joins.py -------------------------------------------------------------------------------- /tests/cookbook/test_literals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/cookbook/test_literals.py -------------------------------------------------------------------------------- /tests/cookbook/test_sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/cookbook/test_sorting.py -------------------------------------------------------------------------------- /tests/cookbook/test_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/cookbook/test_write.py -------------------------------------------------------------------------------- /tests/dataframe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dataframe/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/conftest.py -------------------------------------------------------------------------------- /tests/dataframe/test_concat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_concat.py -------------------------------------------------------------------------------- /tests/dataframe/test_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_count.py -------------------------------------------------------------------------------- /tests/dataframe/test_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_creation.py -------------------------------------------------------------------------------- /tests/dataframe/test_decimals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_decimals.py -------------------------------------------------------------------------------- /tests/dataframe/test_describe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_describe.py -------------------------------------------------------------------------------- /tests/dataframe/test_distinct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_distinct.py -------------------------------------------------------------------------------- /tests/dataframe/test_explain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_explain.py -------------------------------------------------------------------------------- /tests/dataframe/test_explode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_explode.py -------------------------------------------------------------------------------- /tests/dataframe/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_filter.py -------------------------------------------------------------------------------- /tests/dataframe/test_getitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_getitem.py -------------------------------------------------------------------------------- /tests/dataframe/test_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_iter.py -------------------------------------------------------------------------------- /tests/dataframe/test_joins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_joins.py -------------------------------------------------------------------------------- /tests/dataframe/test_morsels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_morsels.py -------------------------------------------------------------------------------- /tests/dataframe/test_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_pipe.py -------------------------------------------------------------------------------- /tests/dataframe/test_pivot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_pivot.py -------------------------------------------------------------------------------- /tests/dataframe/test_proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_proto.py -------------------------------------------------------------------------------- /tests/dataframe/test_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_repr.py -------------------------------------------------------------------------------- /tests/dataframe/test_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_sample.py -------------------------------------------------------------------------------- /tests/dataframe/test_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_select.py -------------------------------------------------------------------------------- /tests/dataframe/test_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_show.py -------------------------------------------------------------------------------- /tests/dataframe/test_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_sort.py -------------------------------------------------------------------------------- /tests/dataframe/test_stddev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/dataframe/test_stddev.py -------------------------------------------------------------------------------- /tests/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/expressions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/expressions/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/expressions/conftest.py -------------------------------------------------------------------------------- /tests/expressions/test_utf8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/expressions/test_utf8.py -------------------------------------------------------------------------------- /tests/expressions/typing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/file/test_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/file/test_audio.py -------------------------------------------------------------------------------- /tests/file/test_file_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/file/test_file_basics.py -------------------------------------------------------------------------------- /tests/file/test_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/file/test_video.py -------------------------------------------------------------------------------- /tests/functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functions/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/functions/conftest.py -------------------------------------------------------------------------------- /tests/functions/json/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functions/serde/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functions/test_codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/functions/test_codecs.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/ai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/integration/conftest.py -------------------------------------------------------------------------------- /tests/integration/delta_lake/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/iceberg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/io/benchmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/io/csv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/io/docker-compose/retry_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/io/docker-compose/retry_server/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/io/docker-compose/retry_server/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/io/jsonl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/io/parquet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/sql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/test_tpch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/integration/test_tpch.py -------------------------------------------------------------------------------- /tests/integration/unity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/io/av/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/io/av/test_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/io/av/test_video.py -------------------------------------------------------------------------------- /tests/io/clickhouse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/io/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/io/conftest.py -------------------------------------------------------------------------------- /tests/io/hudi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/io/hudi/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/io/hudi/conftest.py -------------------------------------------------------------------------------- /tests/io/iceberg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/io/lancedb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/io/mcap/test_mcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/io/mcap/test_mcap.py -------------------------------------------------------------------------------- /tests/io/mock_aws_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/io/mock_aws_server.py -------------------------------------------------------------------------------- /tests/io/test_csv_roundtrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/io/test_csv_roundtrip.py -------------------------------------------------------------------------------- /tests/io/test_json_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/io/test_json_array.py -------------------------------------------------------------------------------- /tests/io/test_parquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/io/test_parquet.py -------------------------------------------------------------------------------- /tests/io/test_partitioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/io/test_partitioning.py -------------------------------------------------------------------------------- /tests/io/test_pushdowns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/io/test_pushdowns.py -------------------------------------------------------------------------------- /tests/io/test_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/io/test_range.py -------------------------------------------------------------------------------- /tests/io/test_sink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/io/test_sink.py -------------------------------------------------------------------------------- /tests/io/test_warc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/io/test_warc.py -------------------------------------------------------------------------------- /tests/io/test_write_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/io/test_write_modes.py -------------------------------------------------------------------------------- /tests/microbenchmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/observability/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/property_based_testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ray/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ray/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/ray/runner.py -------------------------------------------------------------------------------- /tests/ray/test_dask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/ray/test_dask.py -------------------------------------------------------------------------------- /tests/ray/test_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/ray/test_datasets.py -------------------------------------------------------------------------------- /tests/recordbatch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/recordbatch/__init__.py -------------------------------------------------------------------------------- /tests/recordbatch/image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/recordbatch/json/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/recordbatch/list/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/recordbatch/map/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/recordbatch/recordbatch_io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/recordbatch/struct/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/recordbatch/temporal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/recordbatch/test_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/recordbatch/test_eval.py -------------------------------------------------------------------------------- /tests/recordbatch/test_fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/recordbatch/test_fill.py -------------------------------------------------------------------------------- /tests/recordbatch/test_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/recordbatch/test_hash.py -------------------------------------------------------------------------------- /tests/recordbatch/test_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/recordbatch/test_head.py -------------------------------------------------------------------------------- /tests/recordbatch/test_take.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/recordbatch/test_take.py -------------------------------------------------------------------------------- /tests/recordbatch/test_when.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/recordbatch/test_when.py -------------------------------------------------------------------------------- /tests/recordbatch/utf8/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/series/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/__init__.py -------------------------------------------------------------------------------- /tests/series/test_bitwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_bitwise.py -------------------------------------------------------------------------------- /tests/series/test_cast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_cast.py -------------------------------------------------------------------------------- /tests/series/test_concat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_concat.py -------------------------------------------------------------------------------- /tests/series/test_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_embedding.py -------------------------------------------------------------------------------- /tests/series/test_fill_null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_fill_null.py -------------------------------------------------------------------------------- /tests/series/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_filter.py -------------------------------------------------------------------------------- /tests/series/test_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_float.py -------------------------------------------------------------------------------- /tests/series/test_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_hash.py -------------------------------------------------------------------------------- /tests/series/test_html_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_html_repr.py -------------------------------------------------------------------------------- /tests/series/test_if_else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_if_else.py -------------------------------------------------------------------------------- /tests/series/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_image.py -------------------------------------------------------------------------------- /tests/series/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_list.py -------------------------------------------------------------------------------- /tests/series/test_minhash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_minhash.py -------------------------------------------------------------------------------- /tests/series/test_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_series.py -------------------------------------------------------------------------------- /tests/series/test_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_slice.py -------------------------------------------------------------------------------- /tests/series/test_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_sort.py -------------------------------------------------------------------------------- /tests/series/test_take.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_take.py -------------------------------------------------------------------------------- /tests/series/test_tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_tensor.py -------------------------------------------------------------------------------- /tests/series/test_utf8_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/series/test_utf8_ops.py -------------------------------------------------------------------------------- /tests/sql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sql/set_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/set_ops.py -------------------------------------------------------------------------------- /tests/sql/test_aggs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_aggs.py -------------------------------------------------------------------------------- /tests/sql/test_coalesce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_coalesce.py -------------------------------------------------------------------------------- /tests/sql/test_describe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_describe.py -------------------------------------------------------------------------------- /tests/sql/test_exprs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_exprs.py -------------------------------------------------------------------------------- /tests/sql/test_float_exprs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_float_exprs.py -------------------------------------------------------------------------------- /tests/sql/test_joins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_joins.py -------------------------------------------------------------------------------- /tests/sql/test_limit_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_limit_offset.py -------------------------------------------------------------------------------- /tests/sql/test_list_exprs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_list_exprs.py -------------------------------------------------------------------------------- /tests/sql/test_orderbys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_orderbys.py -------------------------------------------------------------------------------- /tests/sql/test_select_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_select_expr.py -------------------------------------------------------------------------------- /tests/sql/test_sess_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_sess_sql.py -------------------------------------------------------------------------------- /tests/sql/test_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_sql.py -------------------------------------------------------------------------------- /tests/sql/test_sql_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_sql_catalog.py -------------------------------------------------------------------------------- /tests/sql/test_sql_udfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_sql_udfs.py -------------------------------------------------------------------------------- /tests/sql/test_uri_exprs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_uri_exprs.py -------------------------------------------------------------------------------- /tests/sql/test_utf8_exprs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_utf8_exprs.py -------------------------------------------------------------------------------- /tests/sql/test_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/sql/test_window.py -------------------------------------------------------------------------------- /tests/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/test_context.py -------------------------------------------------------------------------------- /tests/test_datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/test_datatypes.py -------------------------------------------------------------------------------- /tests/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/test_import.py -------------------------------------------------------------------------------- /tests/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/test_logger.py -------------------------------------------------------------------------------- /tests/test_scarf_telemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/test_scarf_telemetry.py -------------------------------------------------------------------------------- /tests/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/test_schema.py -------------------------------------------------------------------------------- /tests/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/test_session.py -------------------------------------------------------------------------------- /tests/test_size_estimations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/test_size_estimations.py -------------------------------------------------------------------------------- /tests/test_subscribers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/test_subscribers.py -------------------------------------------------------------------------------- /tests/udf/test_batch_udf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/udf/test_batch_udf.py -------------------------------------------------------------------------------- /tests/udf/test_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/udf/test_cls.py -------------------------------------------------------------------------------- /tests/udf/test_row_wise_udf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/udf/test_row_wise_udf.py -------------------------------------------------------------------------------- /tests/udf/test_udf_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/udf/test_udf_metrics.py -------------------------------------------------------------------------------- /tests/udf_library/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/attach_debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tools/attach_debugger.py -------------------------------------------------------------------------------- /tools/capture-durations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tools/capture-durations.sh -------------------------------------------------------------------------------- /tools/check_invalid_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tools/check_invalid_deps.sh -------------------------------------------------------------------------------- /tools/ci_bench_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tools/ci_bench_utils.py -------------------------------------------------------------------------------- /tools/gha_run_cluster_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tools/gha_run_cluster_job.py -------------------------------------------------------------------------------- /tools/git_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tools/git_utils.py -------------------------------------------------------------------------------- /tutorials/.gitignore: -------------------------------------------------------------------------------- 1 | *-checkpoint.ipynb 2 | -------------------------------------------------------------------------------- /tutorials/flyte/.dockerignore: -------------------------------------------------------------------------------- 1 | venv 2 | -------------------------------------------------------------------------------- /tutorials/flyte/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tutorials/flyte/Dockerfile -------------------------------------------------------------------------------- /tutorials/flyte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tutorials/flyte/README.md -------------------------------------------------------------------------------- /tutorials/flyte/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tutorials/flyte/app.py -------------------------------------------------------------------------------- /tutorials/flyte/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tutorials/flyte/notebook.ipynb -------------------------------------------------------------------------------- /tutorials/intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tutorials/intro.ipynb -------------------------------------------------------------------------------- /tutorials/mnist.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/tutorials/mnist.ipynb -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eventual-Inc/Daft/HEAD/uv.lock --------------------------------------------------------------------------------