deltacat 2.0.0b2__tar.gz → 2.0.0b3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {deltacat-2.0.0b2/deltacat.egg-info → deltacat-2.0.0b3}/PKG-INFO +1 -1
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/__init__.py +2 -3
- {deltacat-2.0.0b2 → deltacat-2.0.0b3/deltacat.egg-info}/PKG-INFO +1 -1
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/LICENSE +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/MANIFEST.in +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/README.md +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/annotations.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/api.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/aws/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/aws/clients.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/aws/constants.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/aws/s3u.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/benchmarking/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/benchmarking/benchmark_engine.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/benchmarking/benchmark_parquet_reads.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/benchmarking/benchmark_report.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/benchmarking/benchmark_suite.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/benchmarking/conftest.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/benchmarking/data/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/benchmarking/data/random_row_generator.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/benchmarking/data/row_generator.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/benchmarking/test_benchmark_pipeline.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/catalog/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/catalog/delegate.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/catalog/iceberg/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/catalog/iceberg/iceberg_catalog_config.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/catalog/iceberg/impl.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/catalog/iceberg/overrides.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/catalog/interface.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/catalog/main/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/catalog/main/impl.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/catalog/model/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/catalog/model/catalog.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/catalog/model/properties.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/catalog/model/table_definition.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/compaction_session.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/compact_partition_params.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/compaction_session_audit_info.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/compactor_version.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/dedupe_result.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/delta_annotated.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/delta_file_envelope.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/delta_file_locator.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/hash_bucket_result.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/materialize_result.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/primary_key_index.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/pyarrow_write_result.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/repartition_result.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/round_completion_info.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/table_object_store.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/repartition_session.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/steps/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/steps/dedupe.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/steps/hash_bucket.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/steps/materialize.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/steps/repartition.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/utils/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/utils/io.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/utils/primary_key_index.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/utils/round_completion_file.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/utils/sort_key.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/utils/system_columns.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/compaction_session.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/constants.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/deletes/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/deletes/delete_file_envelope.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/deletes/delete_strategy.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/deletes/delete_strategy_equality_delete.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/deletes/model.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/deletes/utils.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/model/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/model/evaluate_compaction_result.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/model/hash_bucket_input.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/model/hash_bucket_result.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/model/merge_file_group.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/model/merge_input.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/model/merge_result.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/private/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/private/compaction_utils.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/steps/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/steps/hash_bucket.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/steps/merge.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/utils/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/utils/content_type_params.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/utils/dedupe.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/utils/delta.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/utils/io.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/utils/merge.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/utils/primary_key_index.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/utils/task_options.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/constants.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/converter_session.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/model/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/model/convert_input.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/model/convert_input_files.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/model/converter_session_params.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/pyiceberg/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/pyiceberg/catalog.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/pyiceberg/overrides.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/pyiceberg/update_snapshot_overrides.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/steps/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/steps/convert.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/steps/dedupe.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/utils/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/utils/convert_task_options.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/utils/converter_session_utils.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/utils/iceberg_columns.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/utils/io.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/utils/s3u.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/merge_on_read/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/merge_on_read/daft.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/merge_on_read/model/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/merge_on_read/model/merge_on_read_params.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/merge_on_read/utils/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/merge_on_read/utils/delta.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/resource_estimation/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/resource_estimation/delta.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/resource_estimation/manifest.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/resource_estimation/model.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/resource_estimation/parquet.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/stats/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/stats/models/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/stats/models/delta_column_stats.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/stats/models/delta_stats.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/stats/models/delta_stats_cache_result.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/stats/models/manifest_entry_stats.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/stats/models/stats_result.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/stats/types.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/constants.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/env.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/examples/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/examples/basic_logging.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/examples/common/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/examples/common/fixtures.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/examples/hello_world.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/examples/iceberg/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/examples/iceberg/iceberg_bucket_writer.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/examples/iceberg/iceberg_reader.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/exceptions.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/io/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/io/file_object_store.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/io/memcached_object_store.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/io/object_store.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/io/ray_plasma_object_store.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/io/redis_object_store.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/io/s3_object_store.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/logs.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/iceberg/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/iceberg/iceberg_scan_planner.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/iceberg/impl.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/iceberg/model.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/interface.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/main/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/main/impl.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/delta.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/interop.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/list_result.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/locator.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/manifest.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/metafile.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/namespace.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/partition.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/scan/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/scan/push_down.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/scan/scan_plan.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/scan/scan_task.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/schema.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/shard.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/sort_key.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/stream.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/table.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/table_version.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/transaction.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/transform.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/model/types.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/arrow/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/arrow/serializer.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/dataset.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/dataset_executor.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/feather/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/feather/file_reader.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/feather/serializer.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/fs/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/fs/file_provider.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/fs/file_store.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/fs/input_file.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/fs/output_file.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/logical_plan.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/metastore/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/metastore/delta.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/metastore/json_sst.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/metastore/sst.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/metastore/sst_interval_tree.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/mvp/Table.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/mvp/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/parquet/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/parquet/data_reader.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/parquet/file_reader.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/parquet/serializer.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/reader/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/reader/block_scanner.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/reader/data_reader.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/reader/data_scan.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/reader/dataset_metastore.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/reader/dataset_reader.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/reader/pyarrow_data_reader.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/reader/query_expression.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/reader/reader_type_registrar.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/schema/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/schema/datatype.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/schema/schema.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/serializer.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/serializer_factory.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/writer/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/writer/dataset_writer.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/writer/memtable_dataset_writer.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/util/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/util/scan_planner.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/_io/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/_io/test_cloudpickle_bug_fix.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/_io/test_file_object_store.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/_io/test_memcached_object_store.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/_io/test_ray_plasma_object_store.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/_io/test_redis_object_store.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/_io/test_s3_object_store.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/aws/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/aws/test_clients.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/aws/test_s3u.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/catalog/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/catalog/test_catalogs.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/catalog/test_default_catalog_impl.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/compact_partition_multiple_rounds_test_cases.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/compact_partition_rebase_test_cases.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/compact_partition_rebase_then_incremental_test_cases.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/compact_partition_test_cases.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/compactor/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/compactor/steps/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/compactor/steps/test_repartition.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/compactor/utils/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/compactor/utils/test_io.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/compactor/utils/test_round_completion_file.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/compactor_v2/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/compactor_v2/test_compaction_session.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/compactor_v2/test_hashlib.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/compactor_v2/utils/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/compactor_v2/utils/test_task_options.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/conftest.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/converter/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/converter/conftest.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/converter/test_convert_session.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/converter/utils.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/resource_estimation/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/resource_estimation/data/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/resource_estimation/test_delta.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/resource_estimation/test_manifest.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/test_compact_partition_incremental.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/test_compact_partition_multiple_rounds.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/test_compact_partition_params.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/test_compact_partition_rebase.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/test_compact_partition_rebase_then_incremental.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/test_util_common.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/test_util_constant.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/compute/test_util_create_table_deltas_repo.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/local_deltacat_storage/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/local_deltacat_storage/exceptions.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/conftest.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/main/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/main/test_main_storage.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/model/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/model/test_delete_parameters.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/model/test_metafile_io.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/model/test_schema.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/model/test_shard.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/model/test_table_version.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/model/test_transaction.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/rivulet/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/rivulet/conftest.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/rivulet/fs/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/rivulet/fs/test_file_location_provider.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/rivulet/schema/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/rivulet/schema/test_schema.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/rivulet/test_dataset.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/rivulet/test_manifest.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/rivulet/test_sst_interval_tree.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/rivulet/test_utils.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/rivulet/writer/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/rivulet/writer/test_dataset_write_then_read.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/rivulet/writer/test_dataset_writer.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/storage/rivulet/writer/test_memtable_dataset_writer.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/test_deltacat_api.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/test_exceptions.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/test_logs.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/test_utils/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/test_utils/constants.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/test_utils/filesystem.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/test_utils/message_pack_utils.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/test_utils/pyarrow.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/test_utils/storage.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/test_utils/utils.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/utils/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/utils/data/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/utils/ray_utils/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/utils/ray_utils/test_concurrency.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/utils/ray_utils/test_dataset.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/utils/test_cloudpickle.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/utils/test_daft.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/utils/test_metrics.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/utils/test_placement.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/utils/test_pyarrow.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/utils/test_record_batch_tables.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/tests/utils/test_resources.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/types/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/types/media.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/types/partial_download.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/types/tables.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/arguments.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/cloudpickle.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/common.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/daft.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/export.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/filesystem.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/metafile_locator.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/metrics.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/numpy.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/pandas.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/performance.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/placement.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/pyarrow.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/ray_utils/__init__.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/ray_utils/collections.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/ray_utils/concurrency.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/ray_utils/dataset.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/ray_utils/performance.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/ray_utils/runtime.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/resources.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/s3fs.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/utils/schema.py +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat.egg-info/SOURCES.txt +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat.egg-info/dependency_links.txt +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat.egg-info/requires.txt +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat.egg-info/top_level.txt +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/setup.cfg +0 -0
- {deltacat-2.0.0b2 → deltacat-2.0.0b3}/setup.py +0 -0
@@ -59,7 +59,7 @@ from deltacat.types.tables import TableWriteMode
|
|
59
59
|
|
60
60
|
__iceberg__ = []
|
61
61
|
if importlib.util.find_spec("pyiceberg") is not None:
|
62
|
-
from deltacat.catalog.iceberg import impl as IcebergCatalog
|
62
|
+
from deltacat.catalog.iceberg import impl as IcebergCatalog # noqa: F401
|
63
63
|
|
64
64
|
__iceberg__ = [
|
65
65
|
"IcebergCatalog",
|
@@ -67,7 +67,7 @@ if importlib.util.find_spec("pyiceberg") is not None:
|
|
67
67
|
|
68
68
|
deltacat.logs.configure_deltacat_logger(logging.getLogger(__name__))
|
69
69
|
|
70
|
-
__version__ = "2.0.
|
70
|
+
__version__ = "2.0.0b3"
|
71
71
|
|
72
72
|
|
73
73
|
__all__ = [
|
@@ -104,7 +104,6 @@ __all__ = [
|
|
104
104
|
"Dataset",
|
105
105
|
"Datatype",
|
106
106
|
"Field",
|
107
|
-
"IcebergCatalog",
|
108
107
|
"LifecycleState",
|
109
108
|
"ListResult",
|
110
109
|
"LocalDataset",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/compact_partition_params.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/delta_file_envelope.py
RENAMED
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/delta_file_locator.py
RENAMED
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/hash_bucket_result.py
RENAMED
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/materialize_result.py
RENAMED
File without changes
|
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/pyarrow_write_result.py
RENAMED
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/repartition_result.py
RENAMED
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/round_completion_info.py
RENAMED
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/model/table_object_store.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor/utils/round_completion_file.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/deletes/delete_file_envelope.py
RENAMED
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/deletes/delete_strategy.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/model/hash_bucket_input.py
RENAMED
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/model/hash_bucket_result.py
RENAMED
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/model/merge_file_group.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/private/compaction_utils.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/utils/content_type_params.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/compactor_v2/utils/primary_key_index.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/model/convert_input_files.py
RENAMED
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/model/converter_session_params.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/utils/convert_task_options.py
RENAMED
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/converter/utils/converter_session_utils.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/merge_on_read/model/merge_on_read_params.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/compute/stats/models/delta_stats_cache_result.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{deltacat-2.0.0b2 → deltacat-2.0.0b3}/deltacat/storage/rivulet/metastore/sst_interval_tree.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|