LICENSE
README.md
pyproject.toml
setup.py
opteryx/__init__.py
opteryx/__main__.py
opteryx/__version__.py
opteryx/command.py
opteryx/config.py
opteryx/connection.py
opteryx/cursor.py
opteryx/debugging.py
opteryx/exceptions.py
opteryx.egg-info/PKG-INFO
opteryx.egg-info/SOURCES.txt
opteryx.egg-info/dependency_links.txt
opteryx.egg-info/entry_points.txt
opteryx.egg-info/not-zip-safe
opteryx.egg-info/requires.txt
opteryx.egg-info/top_level.txt
opteryx/compiled/__init__.py
opteryx/compiled/aggregations/__init__.py
opteryx/compiled/aggregations/count_distinct.cpp
opteryx/compiled/functions/__init__.py
opteryx/compiled/functions/strings.cpp
opteryx/compiled/functions/timestamp.c
opteryx/compiled/functions/vectors.cpp
opteryx/compiled/io/__init__.py
opteryx/compiled/io/disk_reader.cpp
opteryx/compiled/joins/__init__.py
opteryx/compiled/joins/joins.cpp
opteryx/compiled/list_ops/__init__.py
opteryx/compiled/list_ops/list_ops.cpp
opteryx/compiled/structures/__init__.py
opteryx/compiled/structures/bloom_filter.c
opteryx/compiled/structures/buffers.cpp
opteryx/compiled/structures/hash_table.cpp
opteryx/compiled/structures/lru_k.cpp
opteryx/compiled/structures/memory_pool.cpp
opteryx/compiled/structures/memory_view_stream.c
opteryx/compiled/structures/node.c
opteryx/compiled/structures/relation_statistics.cpp
opteryx/compiled/table_ops/distinct.cpp
opteryx/compiled/table_ops/hash_ops.cpp
opteryx/compiled/table_ops/null_avoidant_ops.cpp
opteryx/connectors/__init__.py
opteryx/connectors/arrow_connector.py
opteryx/connectors/aws_s3_connector.py
opteryx/connectors/cql_connector.py
opteryx/connectors/disk_connector.py
opteryx/connectors/file_connector.py
opteryx/connectors/gcp_cloudstorage_connector.py
opteryx/connectors/gcp_firestore_connector.py
opteryx/connectors/iceberg_connector.py
opteryx/connectors/mongodb_connector.py
opteryx/connectors/sql_connector.py
opteryx/connectors/virtual_data.py
opteryx/connectors/base/__init__.py
opteryx/connectors/base/base_connector.py
opteryx/connectors/capabilities/__init__.py
opteryx/connectors/capabilities/asynchronous.py
opteryx/connectors/capabilities/cacheable.py
opteryx/connectors/capabilities/limit_pushable.py
opteryx/connectors/capabilities/partitionable.py
opteryx/connectors/capabilities/predicate_pushable.py
opteryx/connectors/capabilities/statistics.py
opteryx/constants/__init__.py
opteryx/constants/character_set.py
opteryx/constants/permissions.py
opteryx/constants/query_status.py
opteryx/constants/result_type.py
opteryx/datatypes/__init__.py
opteryx/datatypes/intervals.py
opteryx/functions/__init__.py
opteryx/functions/date_functions.py
opteryx/functions/number_functions.py
opteryx/functions/other_functions.py
opteryx/functions/string_functions.py
opteryx/managers/__init__.py
opteryx/managers/cache/__init__.py
opteryx/managers/cache/cache_manager.py
opteryx/managers/cache/memcached.py
opteryx/managers/cache/null_cache.py
opteryx/managers/cache/redis.py
opteryx/managers/cache/valkey.py
opteryx/managers/execution/__init__.py
opteryx/managers/execution/parallel_engine.py
opteryx/managers/execution/serial_engine.py
opteryx/managers/expression/__init__.py
opteryx/managers/expression/binary_operators.py
opteryx/managers/expression/formatter.py
opteryx/managers/expression/ops.py
opteryx/managers/expression/unary_operations.py
opteryx/managers/kvstores/__init__.py
opteryx/managers/kvstores/base_kv_store.py
opteryx/managers/permissions/__init__.py
opteryx/managers/schemes/__init__.py
opteryx/managers/schemes/base_partition_scheme.py
opteryx/managers/schemes/default_partitions.py
opteryx/managers/schemes/mabel_partitions.py
opteryx/models/__init__.py
opteryx/models/connection_context.py
opteryx/models/logical_column.py
opteryx/models/non_tabular_result.py
opteryx/models/physical_plan.py
opteryx/models/query_properties.py
opteryx/models/query_statistics.py
opteryx/operators/__init__.py
opteryx/operators/aggregate_and_group_node.py
opteryx/operators/aggregate_node.py
opteryx/operators/async_read_node.py
opteryx/operators/base_plan_node.py
opteryx/operators/cross_join_node.py
opteryx/operators/distinct_node.py
opteryx/operators/exit_node.py
opteryx/operators/explain_node.py
opteryx/operators/filter_join_node.py
opteryx/operators/filter_node.py
opteryx/operators/function_dataset_node.py
opteryx/operators/heap_sort_node.py
opteryx/operators/inner_join_node.py
opteryx/operators/limit_node.py
opteryx/operators/nested_loop_join_node.py
opteryx/operators/null_reader_node.py
opteryx/operators/outer_join_node.py
opteryx/operators/projection_node.py
opteryx/operators/read_node.py
opteryx/operators/set_variable_node.py
opteryx/operators/show_columns_node.py
opteryx/operators/show_create_node.py
opteryx/operators/show_value_node.py
opteryx/operators/simple_aggregate_and_group_node.py
opteryx/operators/simple_aggregate_node.py
opteryx/operators/sort_node.py
opteryx/operators/union_node.py
opteryx/operators/unnest_join_node.py
opteryx/planner/__init__.py
opteryx/planner/ast_rewriter.py
opteryx/planner/physical_planner.py
opteryx/planner/sql_rewriter.py
opteryx/planner/binder/__init__.py
opteryx/planner/binder/binder.py
opteryx/planner/binder/binder_visitor.py
opteryx/planner/binder/binding_context.py
opteryx/planner/binder/operator_map.py
opteryx/planner/logical_planner/__init__.py
opteryx/planner/logical_planner/logical_planner.py
opteryx/planner/logical_planner/logical_planner_builders.py
opteryx/planner/logical_planner/logical_planner_renderers.py
opteryx/planner/logical_planner/logical_planner_rewriter.py
opteryx/planner/optimizer/__init__.py
opteryx/planner/optimizer/bench/__init__.py
opteryx/planner/optimizer/bench/cost_model.py
opteryx/planner/optimizer/bench/empty_table.py
opteryx/planner/optimizer/bench/remote_database_pushdown.py
opteryx/planner/optimizer/strategies/__init__.py
opteryx/planner/optimizer/strategies/boolean_simplication.py
opteryx/planner/optimizer/strategies/constant_folding.py
opteryx/planner/optimizer/strategies/correlated_filters.py
opteryx/planner/optimizer/strategies/distinct_pushdown.py
opteryx/planner/optimizer/strategies/join_ordering.py
opteryx/planner/optimizer/strategies/join_rewriter.py
opteryx/planner/optimizer/strategies/limit_pushdown.py
opteryx/planner/optimizer/strategies/operator_fusion.py
opteryx/planner/optimizer/strategies/optimization_strategy.py
opteryx/planner/optimizer/strategies/predicate_compaction.py
opteryx/planner/optimizer/strategies/predicate_ordering.py
opteryx/planner/optimizer/strategies/predicate_pushdown.py
opteryx/planner/optimizer/strategies/predicate_rewriter.py
opteryx/planner/optimizer/strategies/projection_pushdown.py
opteryx/planner/optimizer/strategies/redundant_operators.py
opteryx/planner/optimizer/strategies/split_conjunctive_predicates.py
opteryx/planner/views/__init__.py
opteryx/shared/__init__.py
opteryx/shared/async_memory_pool.py
opteryx/shared/buffer_pool.py
opteryx/shared/materialized_datasets.py
opteryx/shared/stats_cache.py
opteryx/shared/variables.py
opteryx/third_party/__init__.py
opteryx/third_party/mbleven.py
opteryx/third_party/abseil/containers.cpp
opteryx/third_party/alantsd/base64.c
opteryx/third_party/cyan4973/xxhash.cpp
opteryx/third_party/fastfloat/fast_float.cpp
opteryx/third_party/fuzzy/soundex.c
opteryx/third_party/query_builder/__init__.py
opteryx/third_party/query_builder/builder.py
opteryx/third_party/query_builder/test_builder.py
opteryx/third_party/sqloxide/__init__.py
opteryx/third_party/tktech/csimdjson.cpp
opteryx/third_party/travers/__init__.py
opteryx/third_party/travers/graph.py
opteryx/third_party/ulfjack/ryu.c
opteryx/utils/__init__.py
opteryx/utils/arrow.py
opteryx/utils/dates.py
opteryx/utils/dnf.py
opteryx/utils/file_decoders.py
opteryx/utils/formatter.py
opteryx/utils/mermaid.py
opteryx/utils/paths.py
opteryx/utils/series.py
opteryx/utils/sql.py
opteryx/utils/threading.py
opteryx/virtual_datasets/__init__.py
opteryx/virtual_datasets/astronaut_data.py
opteryx/virtual_datasets/astronauts.parquet.zst
opteryx/virtual_datasets/derived_data.py
opteryx/virtual_datasets/missions.parquet.zst
opteryx/virtual_datasets/missions.py
opteryx/virtual_datasets/no_table_data.py
opteryx/virtual_datasets/planet_data.py
opteryx/virtual_datasets/satellite_data.py
opteryx/virtual_datasets/satellites.parquet.zst
opteryx/virtual_datasets/statistics.py
opteryx/virtual_datasets/stop_words.py
opteryx/virtual_datasets/user.py
opteryx/virtual_datasets/variables_data.py
src/cpp/disk_io.cpp
src/cpp/disk_io.h
src/cpp/identity_hash.h
src/cpp/intbuffer.cpp
src/cpp/intbuffer.h
src/cpp/join_kernels.cpp
src/cpp/join_kernels.h
src/cpp/simd_search.cpp
src/cpp/simd_search.h
third_party/abseil/absl/base/internal/raw_logging.cc
third_party/abseil/absl/base/internal/spinlock_wait.cc
third_party/abseil/absl/base/internal/strerror.cc
third_party/abseil/absl/base/internal/sysinfo.cc
third_party/abseil/absl/container/flat_hash_map.h
third_party/abseil/absl/container/flat_hash_set.h
third_party/abseil/absl/container/internal/raw_hash_set.cc
third_party/abseil/absl/hash/internal/city.cc
third_party/abseil/absl/hash/internal/hash.cc
third_party/abseil/absl/hash/internal/low_level_hash.cc
third_party/alantsd/base64.c
third_party/alantsd/base64.h
third_party/cyan4973/xxhash.c
third_party/cyan4973/xxhash.h
third_party/fastfloat/fast_float/fast_float.h
third_party/tktech/simdjson/simdjson.cpp
third_party/tktech/simdjson/simdjson.h
third_party/tktech/simdjson/util.cpp
third_party/tktech/simdjson/util.h
third_party/ulfjack/ryu/d2fixed.c
third_party/ulfjack/ryu/ryu.h