deltacat 1.1.38__py3-none-any.whl → 2.0.0__py3-none-any.whl
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/__init__.py +150 -12
- deltacat/annotations.py +36 -0
- deltacat/api.py +578 -0
- deltacat/aws/constants.py +0 -23
- deltacat/aws/s3u.py +4 -631
- deltacat/benchmarking/benchmark_engine.py +84 -0
- deltacat/benchmarking/benchmark_report.py +86 -0
- deltacat/benchmarking/benchmark_suite.py +11 -0
- deltacat/benchmarking/conftest.py +22 -19
- deltacat/benchmarking/data/random_row_generator.py +94 -0
- deltacat/benchmarking/data/row_generator.py +10 -0
- deltacat/benchmarking/test_benchmark_pipeline.py +108 -0
- deltacat/catalog/__init__.py +73 -0
- deltacat/catalog/delegate.py +615 -140
- deltacat/catalog/interface.py +404 -81
- deltacat/catalog/main/impl.py +2882 -0
- deltacat/catalog/model/catalog.py +348 -46
- deltacat/catalog/model/properties.py +155 -0
- deltacat/catalog/model/table_definition.py +32 -1
- deltacat/compute/__init__.py +14 -0
- deltacat/compute/compactor/compaction_session.py +97 -75
- deltacat/compute/compactor/model/compact_partition_params.py +75 -30
- deltacat/compute/compactor/model/compaction_session_audit_info.py +23 -30
- deltacat/compute/compactor/model/delta_annotated.py +3 -3
- deltacat/compute/compactor/model/delta_file_envelope.py +3 -1
- deltacat/compute/compactor/model/delta_file_locator.py +3 -1
- deltacat/compute/compactor/model/round_completion_info.py +19 -9
- deltacat/compute/compactor/model/table_object_store.py +3 -2
- deltacat/compute/compactor/repartition_session.py +9 -22
- deltacat/compute/compactor/steps/dedupe.py +11 -4
- deltacat/compute/compactor/steps/hash_bucket.py +6 -6
- deltacat/compute/compactor/steps/materialize.py +15 -9
- deltacat/compute/compactor/steps/repartition.py +12 -11
- deltacat/compute/compactor/utils/io.py +7 -6
- deltacat/compute/compactor/utils/round_completion_reader.py +117 -0
- deltacat/compute/compactor/utils/sort_key.py +9 -2
- deltacat/compute/compactor/utils/system_columns.py +3 -1
- deltacat/compute/compactor_v2/compaction_session.py +13 -14
- deltacat/compute/compactor_v2/deletes/utils.py +3 -3
- deltacat/compute/compactor_v2/model/evaluate_compaction_result.py +0 -1
- deltacat/compute/compactor_v2/model/hash_bucket_input.py +9 -3
- deltacat/compute/compactor_v2/model/merge_file_group.py +5 -2
- deltacat/compute/compactor_v2/model/merge_input.py +28 -9
- deltacat/compute/compactor_v2/private/compaction_utils.py +171 -73
- deltacat/compute/compactor_v2/steps/hash_bucket.py +5 -2
- deltacat/compute/compactor_v2/steps/merge.py +156 -53
- deltacat/compute/compactor_v2/utils/content_type_params.py +17 -6
- deltacat/compute/compactor_v2/utils/delta.py +5 -3
- deltacat/compute/compactor_v2/utils/io.py +10 -3
- deltacat/compute/compactor_v2/utils/merge.py +14 -2
- deltacat/compute/compactor_v2/utils/task_options.py +2 -10
- deltacat/compute/converter/constants.py +9 -0
- deltacat/compute/converter/converter_session.py +298 -0
- deltacat/compute/converter/model/convert_input.py +96 -0
- deltacat/compute/converter/model/convert_input_files.py +78 -0
- deltacat/compute/converter/model/convert_result.py +80 -0
- deltacat/compute/converter/model/converter_session_params.py +144 -0
- deltacat/compute/converter/pyiceberg/catalog.py +78 -0
- deltacat/compute/converter/pyiceberg/overrides.py +263 -0
- deltacat/compute/converter/pyiceberg/update_snapshot_overrides.py +299 -0
- deltacat/compute/converter/steps/convert.py +366 -0
- deltacat/compute/converter/steps/dedupe.py +94 -0
- deltacat/compute/converter/utils/__init__.py +0 -0
- deltacat/compute/converter/utils/convert_task_options.py +132 -0
- deltacat/compute/converter/utils/converter_session_utils.py +175 -0
- deltacat/compute/converter/utils/iceberg_columns.py +87 -0
- deltacat/compute/converter/utils/io.py +203 -0
- deltacat/compute/converter/utils/s3u.py +148 -0
- deltacat/compute/janitor.py +205 -0
- deltacat/compute/jobs/__init__.py +0 -0
- deltacat/compute/jobs/client.py +417 -0
- deltacat/compute/resource_estimation/delta.py +11 -1
- deltacat/constants.py +90 -1
- deltacat/docs/__init__.py +0 -0
- deltacat/docs/autogen/__init__.py +0 -0
- deltacat/docs/autogen/schema/__init__.py +0 -0
- deltacat/docs/autogen/schema/inference/__init__.py +0 -0
- deltacat/docs/autogen/schema/inference/generate_type_mappings.py +687 -0
- deltacat/docs/autogen/schema/inference/parse_json_type_mappings.py +673 -0
- deltacat/env.py +61 -0
- deltacat/examples/__init__.py +0 -0
- deltacat/examples/basic_logging.py +101 -0
- deltacat/examples/compactor/__init__.py +0 -0
- deltacat/examples/compactor/aws/__init__.py +1 -0
- deltacat/examples/compactor/bootstrap.py +863 -0
- deltacat/examples/compactor/compactor.py +373 -0
- deltacat/examples/compactor/explorer.py +473 -0
- deltacat/examples/compactor/gcp/__init__.py +1 -0
- deltacat/examples/compactor/job_runner.py +439 -0
- deltacat/examples/compactor/utils/__init__.py +1 -0
- deltacat/examples/compactor/utils/common.py +261 -0
- deltacat/examples/experimental/__init__.py +0 -0
- deltacat/examples/experimental/iceberg/__init__.py +0 -0
- deltacat/examples/experimental/iceberg/converter/__init__.py +0 -0
- deltacat/examples/experimental/iceberg/converter/beam/__init__.py +0 -0
- deltacat/examples/experimental/iceberg/converter/beam/app.py +226 -0
- deltacat/examples/experimental/iceberg/converter/beam/main.py +133 -0
- deltacat/examples/experimental/iceberg/converter/beam/test_workflow.py +113 -0
- deltacat/examples/experimental/iceberg/converter/beam/utils/__init__.py +3 -0
- deltacat/examples/experimental/iceberg/converter/beam/utils/common.py +174 -0
- deltacat/examples/experimental/iceberg/converter/beam/utils/spark.py +263 -0
- deltacat/examples/experimental/iceberg/iceberg_bucket_writer.py +184 -0
- deltacat/examples/experimental/iceberg/iceberg_reader.py +147 -0
- deltacat/examples/hello_world.py +29 -0
- deltacat/examples/indexer/__init__.py +0 -0
- deltacat/examples/indexer/aws/__init__.py +0 -0
- deltacat/examples/indexer/gcp/__init__.py +0 -0
- deltacat/examples/indexer/indexer.py +163 -0
- deltacat/examples/indexer/job_runner.py +198 -0
- deltacat/exceptions.py +116 -12
- deltacat/experimental/__init__.py +0 -0
- deltacat/experimental/catalog/__init__.py +0 -0
- deltacat/experimental/catalog/iceberg/__init__.py +6 -0
- deltacat/experimental/catalog/iceberg/iceberg_catalog_config.py +26 -0
- deltacat/experimental/catalog/iceberg/impl.py +399 -0
- deltacat/experimental/catalog/iceberg/overrides.py +72 -0
- deltacat/experimental/compatibility/__init__.py +0 -0
- deltacat/experimental/compatibility/backfill_locator_to_id_mappings.py +201 -0
- deltacat/experimental/converter_agent/__init__.py +0 -0
- deltacat/experimental/converter_agent/beam/__init__.py +0 -0
- deltacat/experimental/converter_agent/beam/managed.py +173 -0
- deltacat/experimental/converter_agent/table_monitor.py +479 -0
- deltacat/experimental/daft/__init__.py +4 -0
- deltacat/experimental/daft/daft_catalog.py +229 -0
- deltacat/experimental/storage/__init__.py +0 -0
- deltacat/experimental/storage/iceberg/__init__.py +0 -0
- deltacat/experimental/storage/iceberg/iceberg_scan_planner.py +129 -0
- deltacat/experimental/storage/iceberg/impl.py +739 -0
- deltacat/experimental/storage/iceberg/model.py +713 -0
- deltacat/experimental/storage/iceberg/visitor.py +119 -0
- deltacat/experimental/storage/rivulet/__init__.py +11 -0
- deltacat/experimental/storage/rivulet/arrow/__init__.py +0 -0
- deltacat/experimental/storage/rivulet/arrow/serializer.py +78 -0
- deltacat/experimental/storage/rivulet/dataset.py +745 -0
- deltacat/experimental/storage/rivulet/dataset_executor.py +79 -0
- deltacat/experimental/storage/rivulet/feather/__init__.py +7 -0
- deltacat/experimental/storage/rivulet/feather/file_reader.py +138 -0
- deltacat/experimental/storage/rivulet/feather/serializer.py +35 -0
- deltacat/experimental/storage/rivulet/fs/__init__.py +0 -0
- deltacat/experimental/storage/rivulet/fs/file_provider.py +105 -0
- deltacat/experimental/storage/rivulet/fs/file_store.py +130 -0
- deltacat/experimental/storage/rivulet/fs/input_file.py +76 -0
- deltacat/experimental/storage/rivulet/fs/output_file.py +86 -0
- deltacat/experimental/storage/rivulet/logical_plan.py +105 -0
- deltacat/experimental/storage/rivulet/metastore/__init__.py +0 -0
- deltacat/experimental/storage/rivulet/metastore/delta.py +188 -0
- deltacat/experimental/storage/rivulet/metastore/json_sst.py +105 -0
- deltacat/experimental/storage/rivulet/metastore/sst.py +82 -0
- deltacat/experimental/storage/rivulet/metastore/sst_interval_tree.py +260 -0
- deltacat/experimental/storage/rivulet/mvp/Table.py +101 -0
- deltacat/experimental/storage/rivulet/mvp/__init__.py +5 -0
- deltacat/experimental/storage/rivulet/parquet/__init__.py +7 -0
- deltacat/experimental/storage/rivulet/parquet/data_reader.py +0 -0
- deltacat/experimental/storage/rivulet/parquet/file_reader.py +129 -0
- deltacat/experimental/storage/rivulet/parquet/serializer.py +37 -0
- deltacat/experimental/storage/rivulet/reader/__init__.py +0 -0
- deltacat/experimental/storage/rivulet/reader/block_scanner.py +389 -0
- deltacat/experimental/storage/rivulet/reader/data_reader.py +136 -0
- deltacat/experimental/storage/rivulet/reader/data_scan.py +65 -0
- deltacat/experimental/storage/rivulet/reader/dataset_metastore.py +179 -0
- deltacat/experimental/storage/rivulet/reader/dataset_reader.py +158 -0
- deltacat/experimental/storage/rivulet/reader/pyarrow_data_reader.py +124 -0
- deltacat/experimental/storage/rivulet/reader/query_expression.py +99 -0
- deltacat/experimental/storage/rivulet/reader/reader_type_registrar.py +84 -0
- deltacat/experimental/storage/rivulet/schema/__init__.py +0 -0
- deltacat/experimental/storage/rivulet/schema/datatype.py +128 -0
- deltacat/experimental/storage/rivulet/schema/schema.py +251 -0
- deltacat/experimental/storage/rivulet/serializer.py +40 -0
- deltacat/experimental/storage/rivulet/serializer_factory.py +46 -0
- deltacat/experimental/storage/rivulet/shard/__init__.py +0 -0
- deltacat/experimental/storage/rivulet/shard/range_shard.py +129 -0
- deltacat/experimental/storage/rivulet/writer/__init__.py +0 -0
- deltacat/experimental/storage/rivulet/writer/dataset_writer.py +29 -0
- deltacat/experimental/storage/rivulet/writer/memtable_dataset_writer.py +305 -0
- deltacat/io/__init__.py +13 -0
- deltacat/io/dataset/__init__.py +0 -0
- deltacat/io/dataset/deltacat_dataset.py +91 -0
- deltacat/io/datasink/__init__.py +0 -0
- deltacat/io/datasink/deltacat_datasink.py +207 -0
- deltacat/io/datasource/__init__.py +0 -0
- deltacat/io/datasource/deltacat_datasource.py +579 -0
- deltacat/io/reader/__init__.py +0 -0
- deltacat/io/reader/deltacat_read_api.py +172 -0
- deltacat/logs.py +4 -1
- deltacat/storage/__init__.py +138 -28
- deltacat/storage/interface.py +260 -155
- deltacat/storage/main/__init__.py +0 -0
- deltacat/storage/main/impl.py +3030 -0
- deltacat/storage/model/delta.py +142 -71
- deltacat/storage/model/expression/__init__.py +47 -0
- deltacat/storage/model/expression/expression.py +656 -0
- deltacat/storage/model/expression/visitor.py +248 -0
- deltacat/storage/model/interop.py +24 -0
- deltacat/storage/model/list_result.py +8 -0
- deltacat/storage/model/locator.py +93 -9
- deltacat/storage/model/manifest.py +643 -0
- deltacat/storage/model/metafile.py +1421 -0
- deltacat/storage/model/namespace.py +41 -18
- deltacat/storage/model/partition.py +443 -43
- deltacat/storage/model/scan/__init__.py +0 -0
- deltacat/storage/model/scan/push_down.py +46 -0
- deltacat/storage/model/scan/scan_plan.py +10 -0
- deltacat/storage/model/scan/scan_task.py +34 -0
- deltacat/storage/model/schema.py +3160 -0
- deltacat/storage/model/shard.py +51 -0
- deltacat/storage/model/sort_key.py +210 -13
- deltacat/storage/model/stream.py +215 -80
- deltacat/storage/model/table.py +134 -29
- deltacat/storage/model/table_version.py +333 -46
- deltacat/storage/model/transaction.py +1733 -0
- deltacat/storage/model/transform.py +274 -58
- deltacat/storage/model/types.py +138 -16
- deltacat/storage/util/__init__.py +0 -0
- deltacat/storage/util/scan_planner.py +26 -0
- deltacat/tests/_io/__init__.py +1 -0
- deltacat/tests/_io/reader/__init__.py +0 -0
- deltacat/tests/_io/reader/test_deltacat_read_api.py +0 -0
- deltacat/tests/{io → _io}/test_cloudpickle_bug_fix.py +8 -4
- deltacat/tests/aws/test_s3u.py +2 -31
- deltacat/tests/catalog/data/__init__.py +0 -0
- deltacat/tests/catalog/main/__init__.py +0 -0
- deltacat/tests/catalog/main/test_catalog_impl_namespace_operations.py +130 -0
- deltacat/tests/catalog/main/test_catalog_impl_table_operations.py +1972 -0
- deltacat/tests/catalog/model/__init__.py +0 -0
- deltacat/tests/catalog/model/test_table_definition.py +16 -0
- deltacat/tests/catalog/test_catalogs.py +321 -0
- deltacat/tests/catalog/test_default_catalog_impl.py +12154 -66
- deltacat/tests/compute/compact_partition_multiple_rounds_test_cases.py +21 -21
- deltacat/tests/compute/compact_partition_rebase_test_cases.py +6 -6
- deltacat/tests/compute/compact_partition_rebase_then_incremental_test_cases.py +56 -56
- deltacat/tests/compute/compact_partition_test_cases.py +23 -30
- deltacat/tests/compute/compactor/steps/test_repartition.py +14 -14
- deltacat/tests/compute/compactor/utils/test_io.py +125 -123
- deltacat/tests/compute/compactor/utils/test_round_completion_reader.py +254 -0
- deltacat/tests/compute/compactor_v2/test_compaction_session.py +387 -830
- deltacat/tests/compute/compactor_v2/utils/test_content_type_params.py +70 -57
- deltacat/tests/compute/compactor_v2/utils/test_task_options.py +0 -3
- deltacat/tests/compute/conftest.py +39 -0
- deltacat/tests/compute/converter/__init__.py +0 -0
- deltacat/tests/compute/converter/conftest.py +80 -0
- deltacat/tests/compute/converter/test_convert_session.py +826 -0
- deltacat/tests/compute/converter/utils.py +132 -0
- deltacat/tests/compute/resource_estimation/test_delta.py +88 -104
- deltacat/tests/compute/test_compact_partition_incremental.py +91 -98
- deltacat/tests/compute/test_compact_partition_multiple_rounds.py +79 -97
- deltacat/tests/compute/test_compact_partition_params.py +16 -11
- deltacat/tests/compute/test_compact_partition_rebase.py +63 -93
- deltacat/tests/compute/test_compact_partition_rebase_then_incremental.py +249 -220
- deltacat/tests/compute/test_janitor.py +236 -0
- deltacat/tests/compute/test_util_common.py +726 -46
- deltacat/tests/compute/test_util_constant.py +0 -1
- deltacat/tests/conftest.py +25 -0
- deltacat/tests/daft/__init__.py +0 -0
- deltacat/tests/daft/test_model.py +97 -0
- deltacat/tests/experimental/__init__.py +1 -0
- deltacat/tests/experimental/catalog/__init__.py +0 -0
- deltacat/tests/experimental/catalog/iceberg/__init__.py +0 -0
- deltacat/tests/experimental/catalog/iceberg/test_iceberg_catalog.py +71 -0
- deltacat/tests/experimental/compatibility/__init__.py +1 -0
- deltacat/tests/experimental/compatibility/test_backfill_locator_to_id_mappings.py +582 -0
- deltacat/tests/experimental/daft/__init__.py +0 -0
- deltacat/tests/experimental/daft/test_deltacat_daft_integration.py +136 -0
- deltacat/tests/experimental/storage/__init__.py +0 -0
- deltacat/tests/experimental/storage/rivulet/__init__.py +0 -0
- deltacat/tests/experimental/storage/rivulet/conftest.py +149 -0
- deltacat/tests/experimental/storage/rivulet/fs/__init__.py +0 -0
- deltacat/tests/experimental/storage/rivulet/fs/test_file_location_provider.py +94 -0
- deltacat/tests/experimental/storage/rivulet/reader/__init__.py +0 -0
- deltacat/tests/experimental/storage/rivulet/reader/query_expression.py +80 -0
- deltacat/tests/experimental/storage/rivulet/reader/test_data_scan.py +119 -0
- deltacat/tests/experimental/storage/rivulet/reader/test_dataset_metastore.py +71 -0
- deltacat/tests/experimental/storage/rivulet/schema/__init__.py +0 -0
- deltacat/tests/experimental/storage/rivulet/schema/test_schema.py +241 -0
- deltacat/tests/experimental/storage/rivulet/shard/__init__.py +0 -0
- deltacat/tests/experimental/storage/rivulet/shard/test_range_shard.py +162 -0
- deltacat/tests/experimental/storage/rivulet/test_dataset.py +408 -0
- deltacat/tests/experimental/storage/rivulet/test_manifest.py +67 -0
- deltacat/tests/experimental/storage/rivulet/test_sst_interval_tree.py +232 -0
- deltacat/tests/experimental/storage/rivulet/test_utils.py +124 -0
- deltacat/tests/experimental/storage/rivulet/writer/__init__.py +0 -0
- deltacat/tests/experimental/storage/rivulet/writer/test_dataset_write_then_read.py +343 -0
- deltacat/tests/experimental/storage/rivulet/writer/test_dataset_writer.py +79 -0
- deltacat/tests/experimental/storage/rivulet/writer/test_memtable_dataset_writer.py +75 -0
- deltacat/tests/storage/__init__.py +0 -0
- deltacat/tests/storage/main/__init__.py +0 -0
- deltacat/tests/storage/main/test_main_storage.py +8204 -0
- deltacat/tests/storage/model/__init__.py +0 -0
- deltacat/tests/storage/model/test_delete_parameters.py +21 -0
- deltacat/tests/storage/model/test_expression.py +327 -0
- deltacat/tests/storage/model/test_manifest.py +129 -0
- deltacat/tests/storage/model/test_metafile_io.py +2440 -0
- deltacat/tests/storage/model/test_partition_scheme.py +85 -0
- deltacat/tests/storage/model/test_schema.py +479 -0
- deltacat/tests/storage/model/test_schema_update.py +1925 -0
- deltacat/tests/storage/model/test_shard.py +24 -0
- deltacat/tests/storage/model/test_sort_scheme.py +90 -0
- deltacat/tests/storage/model/test_table_version.py +110 -0
- deltacat/tests/storage/model/test_transaction.py +653 -0
- deltacat/tests/storage/model/test_transaction_history.py +886 -0
- deltacat/tests/test_deltacat_api.py +1064 -0
- deltacat/tests/test_exceptions.py +9 -5
- deltacat/tests/test_utils/filesystem.py +14 -0
- deltacat/tests/test_utils/message_pack_utils.py +54 -0
- deltacat/tests/test_utils/pyarrow.py +50 -26
- deltacat/tests/test_utils/storage.py +256 -4
- deltacat/tests/types/__init__.py +0 -0
- deltacat/tests/types/test_tables.py +104 -0
- deltacat/tests/utils/exceptions.py +22 -0
- deltacat/tests/utils/main_deltacat_storage_mock.py +31 -0
- deltacat/tests/utils/ray_utils/test_dataset.py +123 -5
- deltacat/tests/utils/test_daft.py +124 -34
- deltacat/tests/utils/test_numpy.py +1193 -0
- deltacat/tests/utils/test_pandas.py +1106 -0
- deltacat/tests/utils/test_polars.py +1040 -0
- deltacat/tests/utils/test_pyarrow.py +1107 -258
- deltacat/types/media.py +345 -37
- deltacat/types/partial_download.py +1 -1
- deltacat/types/tables.py +2345 -47
- deltacat/utils/arguments.py +33 -1
- deltacat/utils/daft.py +824 -40
- deltacat/utils/export.py +61 -0
- deltacat/utils/filesystem.py +450 -0
- deltacat/utils/metafile_locator.py +74 -0
- deltacat/utils/numpy.py +118 -26
- deltacat/utils/pandas.py +577 -48
- deltacat/utils/polars.py +759 -0
- deltacat/utils/pyarrow.py +1212 -178
- deltacat/utils/ray_utils/concurrency.py +1 -1
- deltacat/utils/ray_utils/dataset.py +101 -10
- deltacat/utils/ray_utils/runtime.py +56 -4
- deltacat/utils/reader_compatibility_mapping.py +3083 -0
- deltacat/utils/url.py +1325 -0
- deltacat-2.0.0.dist-info/METADATA +1163 -0
- deltacat-2.0.0.dist-info/RECORD +439 -0
- {deltacat-1.1.38.dist-info → deltacat-2.0.0.dist-info}/WHEEL +1 -1
- deltacat/aws/redshift/__init__.py +0 -19
- deltacat/aws/redshift/model/manifest.py +0 -394
- deltacat/catalog/default_catalog_impl/__init__.py +0 -369
- deltacat/compute/compactor/utils/round_completion_file.py +0 -97
- deltacat/compute/merge_on_read/__init__.py +0 -4
- deltacat/compute/merge_on_read/daft.py +0 -40
- deltacat/compute/merge_on_read/model/merge_on_read_params.py +0 -66
- deltacat/compute/merge_on_read/utils/delta.py +0 -42
- deltacat/io/dataset.py +0 -73
- deltacat/io/read_api.py +0 -143
- deltacat/storage/model/delete_parameters.py +0 -40
- deltacat/storage/model/partition_spec.py +0 -71
- deltacat/tests/compute/compactor/utils/test_round_completion_file.py +0 -231
- deltacat/tests/compute/test_util_create_table_deltas_repo.py +0 -397
- deltacat/tests/local_deltacat_storage/__init__.py +0 -1262
- deltacat/tests/local_deltacat_storage/exceptions.py +0 -10
- deltacat/utils/s3fs.py +0 -21
- deltacat-1.1.38.dist-info/METADATA +0 -64
- deltacat-1.1.38.dist-info/RECORD +0 -219
- /deltacat/{aws/redshift/model → benchmarking/data}/__init__.py +0 -0
- /deltacat/{compute/merge_on_read/model → catalog/main}/__init__.py +0 -0
- /deltacat/compute/{merge_on_read/utils → converter}/__init__.py +0 -0
- /deltacat/{io/aws → compute/converter/model}/__init__.py +0 -0
- /deltacat/{io/aws/redshift → compute/converter/pyiceberg}/__init__.py +0 -0
- /deltacat/{tests/io → compute/converter/steps}/__init__.py +0 -0
- /deltacat/tests/{io → _io}/test_file_object_store.py +0 -0
- /deltacat/tests/{io → _io}/test_memcached_object_store.py +0 -0
- /deltacat/tests/{io → _io}/test_ray_plasma_object_store.py +0 -0
- /deltacat/tests/{io → _io}/test_redis_object_store.py +0 -0
- /deltacat/tests/{io → _io}/test_s3_object_store.py +0 -0
- {deltacat-1.1.38.dist-info → deltacat-2.0.0.dist-info/licenses}/LICENSE +0 -0
- {deltacat-1.1.38.dist-info → deltacat-2.0.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,439 @@
|
|
1
|
+
deltacat/__init__.py,sha256=CmNZ5zDeAdXkO3AIiaqWP5UXd1CwpYu3yclpEMnBOKs,4446
|
2
|
+
deltacat/annotations.py,sha256=9lBi34DpIV_RPjCCK2Aiz_6nMyd-e-_CfQ1XtdRQQlM,1196
|
3
|
+
deltacat/api.py,sha256=MwCB60tWzEru-Jv1tTWcxYWuID3e5GbCy1jwn4XiDXs,20497
|
4
|
+
deltacat/constants.py,sha256=HPE3SbK1-LRjtTu3OKD9s4N__LWMwj3xFP2N3Qy8fzM,4701
|
5
|
+
deltacat/env.py,sha256=BJdTt8od3IVR4RMLjBxy4oRUHM7Lb16AzMOz8-hpwOI,2303
|
6
|
+
deltacat/exceptions.py,sha256=dqZizcMKC3VwO7EgHXdAC4YUivBKVJgNwQLibMP93MA,16051
|
7
|
+
deltacat/logs.py,sha256=vlKFsid9D6dpX9JlIP67fRZy18SjA08XMEfn0QWrxt0,9513
|
8
|
+
deltacat/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
+
deltacat/aws/clients.py,sha256=4eQvpkV1PzFfxog7EriuglOGGwNFHR5hbGYpjsNNPxk,6949
|
10
|
+
deltacat/aws/constants.py,sha256=L3uWDro8w88lue2KRbCvfHh2Y0Sb6c07eE0MCz1VP3U,422
|
11
|
+
deltacat/aws/s3u.py,sha256=7lMceXr7VNrVRzjhSe-w02WknRrjLdBb8bltnus5MaY,6668
|
12
|
+
deltacat/benchmarking/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
+
deltacat/benchmarking/benchmark_engine.py,sha256=cLoENLTJNAO01Xfsyf14B7xvE4KW1FCyDNcyZp3AUdE,3377
|
14
|
+
deltacat/benchmarking/benchmark_parquet_reads.py,sha256=2BctkvXAYcAxokLwMSTu4TQ6-HGqzkgYcVEAzPN2QQo,1709
|
15
|
+
deltacat/benchmarking/benchmark_report.py,sha256=Bm-7NQFiQM0f47tQ9jMjcaQ8GBNxZ-m8Z130wgwTldk,2719
|
16
|
+
deltacat/benchmarking/benchmark_suite.py,sha256=RbZR1p0U0MU0HkGR06MosV6TKysooQD0HQne2rUAIds,316
|
17
|
+
deltacat/benchmarking/conftest.py,sha256=5-YOV_ws__e4SFCkoQOz_G2ucgDHHF491LWi6gB3Jaw,1897
|
18
|
+
deltacat/benchmarking/test_benchmark_pipeline.py,sha256=MD6Af3EJ1V80l9xqCbl4N5uEjI8thMb2zXgJIrs2Ofg,3851
|
19
|
+
deltacat/benchmarking/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
|
+
deltacat/benchmarking/data/random_row_generator.py,sha256=-D1RFIQ6jE6KBmWGN6We8smhYxWQ19N2Pi8Z3iwBCiM,3227
|
21
|
+
deltacat/benchmarking/data/row_generator.py,sha256=PqtYdbgznqKVfidnR40gwET7yHov2N7Esd8bEY90ALU,333
|
22
|
+
deltacat/catalog/__init__.py,sha256=lsu9N2G6P6HkyvrIpGY34SVkJM8-lwVaNfZanNTRjAc,1534
|
23
|
+
deltacat/catalog/delegate.py,sha256=RDOQHaYvpvwc3RTZNaJhv00yXV1WHgE8YcD4i19H6g0,26870
|
24
|
+
deltacat/catalog/interface.py,sha256=rmJSVi8dNORVa0ydzRFRwMcbpXwhDjYEpGAIGi-4O08,18486
|
25
|
+
deltacat/catalog/main/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
|
+
deltacat/catalog/main/impl.py,sha256=lztAIZ4MRGC2RFtGpbDwJdZgIWPuooX8JW_zG9tyzVk,103157
|
27
|
+
deltacat/catalog/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
28
|
+
deltacat/catalog/model/catalog.py,sha256=gvfczu9yhvDIjPjx5ZE69IUu1I_nhZOHURsOAakzhcQ,12765
|
29
|
+
deltacat/catalog/model/properties.py,sha256=Bt7JgmG9UQD9ABqrCXniGrbRWpYWbini9ZCY8dBhifU,5416
|
30
|
+
deltacat/catalog/model/table_definition.py,sha256=mKmwFd2qKlj7ZH4AdZwU3bEcFtzpGvl0mXuWjqLUgBw,1842
|
31
|
+
deltacat/compute/__init__.py,sha256=Yopyz3mokk-HtV9CDjQFCluvHbI7UiOPZYVtapUu13A,247
|
32
|
+
deltacat/compute/janitor.py,sha256=HweCgjMXfSro5guFJ1ehMkYOuRWL6QycSeX0nafHWJk,8091
|
33
|
+
deltacat/compute/compactor/__init__.py,sha256=ivpOPve1yKi3Vz3tVgp-eeFMNEeUSf-dlRJNSCM85sE,1022
|
34
|
+
deltacat/compute/compactor/compaction_session.py,sha256=GmWRJ018QZ7cyTutMe6xe3Hhg8UlV0AQ2I_KPhyRfus,29049
|
35
|
+
deltacat/compute/compactor/repartition_session.py,sha256=FSqDu2IHO3xqDJPnZna4Y5cQpzbWPJFMuzUburDSoaM,6834
|
36
|
+
deltacat/compute/compactor/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
|
+
deltacat/compute/compactor/model/compact_partition_params.py,sha256=OrGzgOvcmnfefzTIu6Fmw1nkMo-vDVtBQXnKTkN7fNU,20797
|
38
|
+
deltacat/compute/compactor/model/compaction_session_audit_info.py,sha256=YwGqnadN-MAfo_QmzPJut4y1-5OiiHJ2f0rLwiQFfJU,32216
|
39
|
+
deltacat/compute/compactor/model/compactor_version.py,sha256=RwRvManiCxZmzjAWzm1OPDxjB1BEHu1d0fBJyGhXKxA,87
|
40
|
+
deltacat/compute/compactor/model/dedupe_result.py,sha256=1OCV944qJdLQ_-8scisVKl45ej1eRv9OV539QYZtQ-U,292
|
41
|
+
deltacat/compute/compactor/model/delta_annotated.py,sha256=fLlgFGigvn8-M2JMvSOhSOipop06Z05QzfiOy8Rym4w,12552
|
42
|
+
deltacat/compute/compactor/model/delta_file_envelope.py,sha256=-5OfvAg0hgltWbw3SZN-6mkcNqv335BO3oC_ktY0JPM,3761
|
43
|
+
deltacat/compute/compactor/model/delta_file_locator.py,sha256=tvjB54WS6uVegrjyvAnf589PFVgVBsVnLqHtAsDlEng,1989
|
44
|
+
deltacat/compute/compactor/model/hash_bucket_result.py,sha256=71qGmaT1Mks-r3-aatjNbn2x3yWIgT8RmV0bRWe6pdA,275
|
45
|
+
deltacat/compute/compactor/model/materialize_result.py,sha256=w7FYtVg2j30c6GJ1fKS4lcOTAjlEovuGYT7wVyKkXro,2542
|
46
|
+
deltacat/compute/compactor/model/primary_key_index.py,sha256=9EYoxauzXeEY_cYAVSCqDMXps8wEAPSXWk-6_LLNwBU,10449
|
47
|
+
deltacat/compute/compactor/model/pyarrow_write_result.py,sha256=WYIa0DRcyaemR6yUS8_8RLQ2voTmCVNFUL99qxPmt70,1324
|
48
|
+
deltacat/compute/compactor/model/repartition_result.py,sha256=HZy7Ls6toI4rXgVW2yIKMIkVS8o9kxvlIJPvo5_pCxA,140
|
49
|
+
deltacat/compute/compactor/model/round_completion_info.py,sha256=NwGjGkpETcUMUfe2AbMqupyJP1Z11FfE9V0-9jEcOjE,5685
|
50
|
+
deltacat/compute/compactor/model/table_object_store.py,sha256=-M3e0abaX6VlSqxGlcBfvpGgVry68sP2Iup6vzaNXhw,1481
|
51
|
+
deltacat/compute/compactor/steps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
52
|
+
deltacat/compute/compactor/steps/dedupe.py,sha256=LINBSRR00ZpV4BA32bqhnhPLiGdexdpqYwWE-y9YlfU,10404
|
53
|
+
deltacat/compute/compactor/steps/hash_bucket.py,sha256=w6J4gFGnOwdnfVsczrFHbg63tpkXoxDz3iTuy2NnvZU,10550
|
54
|
+
deltacat/compute/compactor/steps/materialize.py,sha256=RMO-qaA0WhP660gx-6ere-E0zD9E2KMuM5YuxyVnyxo,14390
|
55
|
+
deltacat/compute/compactor/steps/repartition.py,sha256=9CfoAZiOnsnwVrFcilGf3fSY-B5Z5NOFHTR-bvgsk14,10941
|
56
|
+
deltacat/compute/compactor/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
57
|
+
deltacat/compute/compactor/utils/io.py,sha256=pBmd2zohWPo92sLykKa0RjhMfeZRUOv8M0bQ0kd2W2U,17196
|
58
|
+
deltacat/compute/compactor/utils/primary_key_index.py,sha256=ay2-7t4mP9I_l5gKkrv5h5_r8Icts8mBcbH7OJBknrY,2435
|
59
|
+
deltacat/compute/compactor/utils/round_completion_reader.py,sha256=9usYZkglUnNWoihAVsGvTrq5aTfOwO-ENvi92eRW3HM,5190
|
60
|
+
deltacat/compute/compactor/utils/sort_key.py,sha256=fgt9qTqY2GVA7gMS9EBedXzhmBQtcH1Fa3eitDnfkVQ,2698
|
61
|
+
deltacat/compute/compactor/utils/system_columns.py,sha256=NPWMGQrS9dv7kt4c6oKkmGF_lo6JP30QgZbYNHdHAPk,9518
|
62
|
+
deltacat/compute/compactor_v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
63
|
+
deltacat/compute/compactor_v2/compaction_session.py,sha256=fS2Rkmrpf9pXB2BelZHSD5yFTkjcqHrV7Ha5zqsuynQ,8046
|
64
|
+
deltacat/compute/compactor_v2/constants.py,sha256=F5Phrh-2JgnWvtjHXacxOG5Z2ivKcHnboerI12rc1zk,3632
|
65
|
+
deltacat/compute/compactor_v2/deletes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
66
|
+
deltacat/compute/compactor_v2/deletes/delete_file_envelope.py,sha256=AeuH9JRMwp6mvQf6P2cqL92hUEtResQq6qUTS0kIKac,3111
|
67
|
+
deltacat/compute/compactor_v2/deletes/delete_strategy.py,sha256=SMEJOxR-5r92kvKNqtu2w6HmwtmhljcZX1wcNEuS-4w,2833
|
68
|
+
deltacat/compute/compactor_v2/deletes/delete_strategy_equality_delete.py,sha256=U4zxVECXSPs1Nj3iPf_tiRRCs12CF8CHmRt4s_GDzq8,6503
|
69
|
+
deltacat/compute/compactor_v2/deletes/model.py,sha256=kW7kfRe4jVNMnsWQrl0nyKdDpvB9mbJND-MVzAajbAI,558
|
70
|
+
deltacat/compute/compactor_v2/deletes/utils.py,sha256=fWmhWX_kg56qJntjbRtPFA3LyGOSYmjSF-5j_7pe04k,6642
|
71
|
+
deltacat/compute/compactor_v2/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
72
|
+
deltacat/compute/compactor_v2/model/evaluate_compaction_result.py,sha256=CTKQTPGNenDJgT4IZGKwf2vlDvImFwmmmgdht7pE5W4,481
|
73
|
+
deltacat/compute/compactor_v2/model/hash_bucket_input.py,sha256=BX_KoFuDjeLzY4HY-HIwzXXtCjEAwqvcfsxqCNbE904,3157
|
74
|
+
deltacat/compute/compactor_v2/model/hash_bucket_result.py,sha256=EsY9BPPywhmxlcLKn3kGWzAX4s4BTR2vYyPUB-wAEOc,309
|
75
|
+
deltacat/compute/compactor_v2/model/merge_file_group.py,sha256=Mz033kv1hUDrmjyvqbf2OkizVsIC5yamDhkrJxca0Us,7482
|
76
|
+
deltacat/compute/compactor_v2/model/merge_input.py,sha256=q4lf0YSuEBmXapMhBMmAn5iEbk_l1xHUUtN3k54mhoE,6444
|
77
|
+
deltacat/compute/compactor_v2/model/merge_result.py,sha256=_IZTCStpb4UKiRCJYA3g6EhAqjrw0t9vmoDAN8kIK-Y,436
|
78
|
+
deltacat/compute/compactor_v2/private/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
79
|
+
deltacat/compute/compactor_v2/private/compaction_utils.py,sha256=hU7Jp07RVG1EiD_hneMKji6lbuFNv4sggjivRBnJy8E,35211
|
80
|
+
deltacat/compute/compactor_v2/steps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
81
|
+
deltacat/compute/compactor_v2/steps/hash_bucket.py,sha256=bt4f-my0-HEEKy2MsNr92dGEYDVx0d03hJ0vDP3BB_4,6783
|
82
|
+
deltacat/compute/compactor_v2/steps/merge.py,sha256=8wav8nGtqv3l_o5VzKiv-1ispLnSvf6s6SPZ9lq8ftA,30983
|
83
|
+
deltacat/compute/compactor_v2/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
84
|
+
deltacat/compute/compactor_v2/utils/content_type_params.py,sha256=Ac-qETn2FUfFjgWFLuNdQEr0mIh2aEOHWp9veJeG96c,8634
|
85
|
+
deltacat/compute/compactor_v2/utils/dedupe.py,sha256=Jz1QbBOdZJwT8K1vD9q01eOn7hdLNZ_AF7bJ0wficr0,1949
|
86
|
+
deltacat/compute/compactor_v2/utils/delta.py,sha256=nemdMwwHat2i9LzrzkLAKWS-NyCjry0zF3USDjW1AFA,3639
|
87
|
+
deltacat/compute/compactor_v2/utils/io.py,sha256=2lINpoSGg8_bqXvZmxXE2k0jMPTVwivaK-yMBfD1LHw,6417
|
88
|
+
deltacat/compute/compactor_v2/utils/merge.py,sha256=Y_gYuj6MZDvYgu_KyhYkNYBHhK_zFbKxjSQKORJ864A,5965
|
89
|
+
deltacat/compute/compactor_v2/utils/primary_key_index.py,sha256=1IolwUoS9PkqG7yIASVHgZXIlIt8Px_8DIrqCajCqCs,12631
|
90
|
+
deltacat/compute/compactor_v2/utils/task_options.py,sha256=u1S7eV09erejOzes0owV4bhkAH20Q9EPjHBgbvV954Q,13340
|
91
|
+
deltacat/compute/converter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
92
|
+
deltacat/compute/converter/constants.py,sha256=8bavgMWtlfFmI3UPrbRJY5CyfVk_xNzUznx83CxPwNU,431
|
93
|
+
deltacat/compute/converter/converter_session.py,sha256=TeepRNKSKh_Cd07MDQw8WjBID8Lb8aMEZgB7fnd8y8A,13323
|
94
|
+
deltacat/compute/converter/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
95
|
+
deltacat/compute/converter/model/convert_input.py,sha256=TxGpwf1BV-c6885L5zn2sVzqCBOY1C0khXAkQ08Ng6Y,3216
|
96
|
+
deltacat/compute/converter/model/convert_input_files.py,sha256=lDESue35Qfcdc0_mbVgx3xf7omSDcm9F8mgryyb2-ao,2964
|
97
|
+
deltacat/compute/converter/model/convert_result.py,sha256=u7LRdj5obMAZ1mqAV1sXTQxpdZobR36E5zKfgRthl1A,2885
|
98
|
+
deltacat/compute/converter/model/converter_session_params.py,sha256=5pT0j-_PRhPY7YrB2ySv0j7dfqXkQiu4DmOouvbttE0,5184
|
99
|
+
deltacat/compute/converter/pyiceberg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
100
|
+
deltacat/compute/converter/pyiceberg/catalog.py,sha256=Q9oqRQ1L7M-DOf-iQ1skL71Zmqi8KBGmFNcx2iaU-Ys,2269
|
101
|
+
deltacat/compute/converter/pyiceberg/overrides.py,sha256=dJqO9CX5g6lw0ZeHEdQx7R0xc2R1bVHg1CXzgn2TTg8,9995
|
102
|
+
deltacat/compute/converter/pyiceberg/update_snapshot_overrides.py,sha256=P5qADpGRq1okXKJMlPMUnc3wfG_yf9ZJjtX7dARExO0,11672
|
103
|
+
deltacat/compute/converter/steps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
104
|
+
deltacat/compute/converter/steps/convert.py,sha256=OJA3GkErvE94Cja6Cg8Eh0f4WEsX_c6RdC15wzRO8s4,15202
|
105
|
+
deltacat/compute/converter/steps/dedupe.py,sha256=_Pxu83SS9Nc3NIQMYYsHAEcZuwARS6KiedZyv7XlzlQ,3573
|
106
|
+
deltacat/compute/converter/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
107
|
+
deltacat/compute/converter/utils/convert_task_options.py,sha256=DCxB9LEqs5j_QuuMe1nwREVsqAlDQXTQOUv8mzfEG90,5124
|
108
|
+
deltacat/compute/converter/utils/converter_session_utils.py,sha256=VcVo0_k0XheqJUloWFEjNLg7iQmPaqpuRua-xnF1LXk,6948
|
109
|
+
deltacat/compute/converter/utils/iceberg_columns.py,sha256=YoEmF4vWDiowRULGvlKJSustBQYbPlKNYwBD6cu0x1I,2503
|
110
|
+
deltacat/compute/converter/utils/io.py,sha256=8pd-z2wojER_Lf8yG2vK1mxrmhD5Elkapee99b4id6c,7651
|
111
|
+
deltacat/compute/converter/utils/s3u.py,sha256=Dnmgm76TgRDYTt7DgEgNMjHt6Q6gW9Pey19akdjWOYU,4787
|
112
|
+
deltacat/compute/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
113
|
+
deltacat/compute/jobs/client.py,sha256=kHGlH7TP1FAc44YFaucBagkTsHzUZmIOqeebyRjgTe0,15265
|
114
|
+
deltacat/compute/resource_estimation/__init__.py,sha256=4bfBXcq-VAt9JCmjvj3yAmn0lEHVGdGsUCCoMGxjEqA,799
|
115
|
+
deltacat/compute/resource_estimation/delta.py,sha256=C1-Fg593I-nqn8kZRcHMMfIzOJB02kr2aATvKXK9tDU,11162
|
116
|
+
deltacat/compute/resource_estimation/manifest.py,sha256=gSqOyIda-pYq3vRsKFq3IiZvwhV3mMqrWPtsmUH9dD8,13035
|
117
|
+
deltacat/compute/resource_estimation/model.py,sha256=1svgVfhNIAyyVkHy-QXcOzO0UVigbVH8M7xyAlgvCbg,5741
|
118
|
+
deltacat/compute/resource_estimation/parquet.py,sha256=5_apma4EKbKcm-nfV73-qN2nfnCeyhFW23ZHX3jz0Kw,3158
|
119
|
+
deltacat/compute/stats/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
120
|
+
deltacat/compute/stats/types.py,sha256=cp0lT8nITTKbnkc03OysRjXfcfXzQml9a4wqCnR6kqs,215
|
121
|
+
deltacat/compute/stats/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
122
|
+
deltacat/compute/stats/models/delta_column_stats.py,sha256=-wXjB2c0BC1RDheumjL_j5-DfRNql4WsK9GpMFQI1cg,3300
|
123
|
+
deltacat/compute/stats/models/delta_stats.py,sha256=hBith8_hbF9TVr6HocLAt6RJ_kZZKO4zrGP8VOP05vA,8556
|
124
|
+
deltacat/compute/stats/models/delta_stats_cache_result.py,sha256=mbJYxpZd5jaER_BWrCD2hROFy3p1nNdBrj66nUpc6io,1624
|
125
|
+
deltacat/compute/stats/models/manifest_entry_stats.py,sha256=NCDAe2nPDEI4kOkuwNkRFgGPS-rqQaQqLuaLoKk20KQ,2419
|
126
|
+
deltacat/compute/stats/models/stats_result.py,sha256=XQAlmzhUqRmg4jzEMUAOqcYn1HUOBTMryBH1CCVlet8,3820
|
127
|
+
deltacat/docs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
128
|
+
deltacat/docs/autogen/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
129
|
+
deltacat/docs/autogen/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
130
|
+
deltacat/docs/autogen/schema/inference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
131
|
+
deltacat/docs/autogen/schema/inference/generate_type_mappings.py,sha256=ZH30xcsArdkAeSmq-cG6CUbuCATE48pONzUHuE-OIHw,26676
|
132
|
+
deltacat/docs/autogen/schema/inference/parse_json_type_mappings.py,sha256=_N37jw5nmNlf40V2mOjDcXdJNhm1qoEa_fQdz_XRk1c,28929
|
133
|
+
deltacat/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
134
|
+
deltacat/examples/basic_logging.py,sha256=Umrum-gvY3gJjDNJ4hOMslMMq9bzeTM-s_DO4dGqJiw,2833
|
135
|
+
deltacat/examples/hello_world.py,sha256=FvxkEDB1qVPJv55Fe1I7Coy0VLYJIisU7ZFYYkw9U2g,525
|
136
|
+
deltacat/examples/compactor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
137
|
+
deltacat/examples/compactor/bootstrap.py,sha256=6BXDWsvH3QuSDmd31Wc0I4_qLy9lZTW4_029MGRslzA,35126
|
138
|
+
deltacat/examples/compactor/compactor.py,sha256=_FbM9paIly4JK3FYP3t5nDPNL98I6K9UbhidachNaAE,12431
|
139
|
+
deltacat/examples/compactor/explorer.py,sha256=43cBFTtq26I88PPjjbLF2h5_Cz-GWOUV3TueOAYiIDs,17067
|
140
|
+
deltacat/examples/compactor/job_runner.py,sha256=9KcJfQw7PShDbnOJGJU4GEWvPo2CJbN_X0VxblRYJK0,14309
|
141
|
+
deltacat/examples/compactor/aws/__init__.py,sha256=mWKI2hZ3rYe6ILM_pRsyw7KEtCq14uah0IeeGmMFeZg,34
|
142
|
+
deltacat/examples/compactor/gcp/__init__.py,sha256=nKZlc5AdZDPZDH9oIW44pDn6iSJONfYaO3OYkLdns1c,34
|
143
|
+
deltacat/examples/compactor/utils/__init__.py,sha256=bu3T9K2PwyUdrrdY7CbZSb1rld7ld71u7JRjMbEsraQ,51
|
144
|
+
deltacat/examples/compactor/utils/common.py,sha256=_e0ySkB7m-EUPRC_jXfYEEgWPsSG51f_V5WQ_tC-60k,8099
|
145
|
+
deltacat/examples/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
146
|
+
deltacat/examples/experimental/iceberg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
147
|
+
deltacat/examples/experimental/iceberg/iceberg_bucket_writer.py,sha256=7v4y_qWLpjB1oT_ZfUXORTF7kWZygUmxmKJoGakLsio,6573
|
148
|
+
deltacat/examples/experimental/iceberg/iceberg_reader.py,sha256=ygnfXiZkVI4MGnbkrAFfHl6eECjVUW2jqz6N5tjJ4Bk,4997
|
149
|
+
deltacat/examples/experimental/iceberg/converter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
150
|
+
deltacat/examples/experimental/iceberg/converter/beam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
151
|
+
deltacat/examples/experimental/iceberg/converter/beam/app.py,sha256=zS51TR4qq7SkwYckAEMSwFnTgMWpKlvB4S9o_DDfiy4,10138
|
152
|
+
deltacat/examples/experimental/iceberg/converter/beam/main.py,sha256=6dYhYfEje4oG-PejlQfJGjdjHtzfEaZwNUnYwagHZNY,4570
|
153
|
+
deltacat/examples/experimental/iceberg/converter/beam/test_workflow.py,sha256=38lz8oLnoHMZRIGl1QqLi0YWU1B4943DlDHXznf50Fg,3993
|
154
|
+
deltacat/examples/experimental/iceberg/converter/beam/utils/__init__.py,sha256=NF6HKuc-MMaRKlDuUUYzgedjc1AeUozOGURLnJ-I_5w,59
|
155
|
+
deltacat/examples/experimental/iceberg/converter/beam/utils/common.py,sha256=wrUk-8sojz4sudZPMzCHyNVLsw1opBg23C9_q6z8AhA,6388
|
156
|
+
deltacat/examples/experimental/iceberg/converter/beam/utils/spark.py,sha256=CAMzNgeDDt4UKVTnUCEu8oRTB57rjBUwK6MxLLO3GBA,10046
|
157
|
+
deltacat/examples/indexer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
158
|
+
deltacat/examples/indexer/indexer.py,sha256=A5gfWomVtfu9uRrAB6UbitQ158ZFkviUscSveri1ggs,6334
|
159
|
+
deltacat/examples/indexer/job_runner.py,sha256=M3ZKTcPL5gy1u_E3aZPal2u5INWZlBGDrsRhb5-F7n4,5921
|
160
|
+
deltacat/examples/indexer/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
161
|
+
deltacat/examples/indexer/gcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
162
|
+
deltacat/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
163
|
+
deltacat/experimental/catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
164
|
+
deltacat/experimental/catalog/iceberg/__init__.py,sha256=rKZk4_5Yh4k50DVxOMb91VUqE18dn3k8XML80ZX_Z60,225
|
165
|
+
deltacat/experimental/catalog/iceberg/iceberg_catalog_config.py,sha256=W3916LCtSP3IPjOzyY-OKH5sSfqixVjVoANb6WVPhB4,799
|
166
|
+
deltacat/experimental/catalog/iceberg/impl.py,sha256=ZJuvgJ3Ux4czjhjis2gVP9qVAZYRIsaXtd0ECLk3I6c,14765
|
167
|
+
deltacat/experimental/catalog/iceberg/overrides.py,sha256=WmM2mxf7ihDl8anb5GzBxo5-sxBkot8ZSRTxDpaauRA,2687
|
168
|
+
deltacat/experimental/compatibility/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
169
|
+
deltacat/experimental/compatibility/backfill_locator_to_id_mappings.py,sha256=ukQNYeAEFl1MDI6rWgII40avwVQs_eX7VYvV-Urd_Eg,6399
|
170
|
+
deltacat/experimental/converter_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
171
|
+
deltacat/experimental/converter_agent/table_monitor.py,sha256=NiHNSlbHG9uujjmKpGqHvA-TY7JqrP7mXACw35GS1G0,16438
|
172
|
+
deltacat/experimental/converter_agent/beam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
173
|
+
deltacat/experimental/converter_agent/beam/managed.py,sha256=ueEqLxMMA2pAruDQnbnahofzcu7KngRnPWj8JBOIZ80,6634
|
174
|
+
deltacat/experimental/daft/__init__.py,sha256=0d1SsgjbDher8TKgS0gSBBdy5TGi01fewiwpG0BMwck,108
|
175
|
+
deltacat/experimental/daft/daft_catalog.py,sha256=112wDqqzdtxmtZVwiZW59MektbRsFMjSRgqYHrUOuok,8396
|
176
|
+
deltacat/experimental/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
177
|
+
deltacat/experimental/storage/iceberg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
178
|
+
deltacat/experimental/storage/iceberg/iceberg_scan_planner.py,sha256=0G-e_yZrweVICrU0740j06QMOj_1I-sHFLfCkpO38_E,5008
|
179
|
+
deltacat/experimental/storage/iceberg/impl.py,sha256=Ei8frS_FXPg8Mvc_Qvf9ZnyxFhiALEXMcFq85_Sbiao,26415
|
180
|
+
deltacat/experimental/storage/iceberg/model.py,sha256=umD_o9KptiPcREgV1-zV1hxCRv-Mbq7JKDMAxE13GL4,24429
|
181
|
+
deltacat/experimental/storage/iceberg/visitor.py,sha256=MVefxkkIaQuXFzOAiSKBeMDR5vZfnXEO3QZjZlbRfa4,4208
|
182
|
+
deltacat/experimental/storage/rivulet/__init__.py,sha256=X7bYog7c4NFjoGw16AsCasBRNqKH9N7Z9Pc8aFUT2sA,353
|
183
|
+
deltacat/experimental/storage/rivulet/dataset.py,sha256=KYA4-dEPTr10dnU8mkhfQaH9xPXeC4Uv2JVjwUUqGZU,28645
|
184
|
+
deltacat/experimental/storage/rivulet/dataset_executor.py,sha256=8KVkXLdnyDVfbtFFGw4x3o-1EHUQt8j8DZkfpI-0jaQ,2772
|
185
|
+
deltacat/experimental/storage/rivulet/logical_plan.py,sha256=jvF4fyrIWHuLnMX-_tBytiGekPRqW1dwB6pbL3agF8s,3316
|
186
|
+
deltacat/experimental/storage/rivulet/serializer.py,sha256=LeyPOKzSa0m5mI__i7OUaVvBTT9T78NQe1hmlgvij_8,1690
|
187
|
+
deltacat/experimental/storage/rivulet/serializer_factory.py,sha256=XDntdBRtHRK9T3lZ0KNVlb5hLudfBXJhgZyPM-4G6OY,1920
|
188
|
+
deltacat/experimental/storage/rivulet/arrow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
189
|
+
deltacat/experimental/storage/rivulet/arrow/serializer.py,sha256=HlMaNlshxYjCq5wgWVI5ETKtf6vQtl0fpv6Y7X3_hfo,2736
|
190
|
+
deltacat/experimental/storage/rivulet/feather/__init__.py,sha256=rR91gf2z-iux8WNV5equ9FEfenrl_eu3F0PJnxDCnKs,321
|
191
|
+
deltacat/experimental/storage/rivulet/feather/file_reader.py,sha256=SpgJDMw5lHFnQF2X0j1omuh02y1noYQPusgPsKTdlMA,4947
|
192
|
+
deltacat/experimental/storage/rivulet/feather/serializer.py,sha256=Jwcpnlo4fdtzwEdTBnzaOc210asi1wm1JppK8kUX0D8,1596
|
193
|
+
deltacat/experimental/storage/rivulet/fs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
194
|
+
deltacat/experimental/storage/rivulet/fs/file_provider.py,sha256=NPEdUnvQ6WDS3I8rWk5j4OKesIj4CR-an2BDDziwlHA,3863
|
195
|
+
deltacat/experimental/storage/rivulet/fs/file_store.py,sha256=OgAXGkSEKY0IR-Bk38tvbcDQ9g1ozGzQxNoCUDl8Yzk,5658
|
196
|
+
deltacat/experimental/storage/rivulet/fs/input_file.py,sha256=2SZdngGUlURg6ier3N-0D7zEySxgerg6EHuj3v0DXJM,1921
|
197
|
+
deltacat/experimental/storage/rivulet/fs/output_file.py,sha256=DRU36N3UpoPtu73RPkhnBBipUmUG6NYMd8lhRL_qCoY,2480
|
198
|
+
deltacat/experimental/storage/rivulet/metastore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
199
|
+
deltacat/experimental/storage/rivulet/metastore/delta.py,sha256=kJYv4QYS867KOBya1elqSl_crFSAPujxv7gdZ9vJLwo,6250
|
200
|
+
deltacat/experimental/storage/rivulet/metastore/json_sst.py,sha256=Gjw-R2U-v3q4gbjQ1vXqZjJHdE4y5qIvJNx202ivak4,3278
|
201
|
+
deltacat/experimental/storage/rivulet/metastore/sst.py,sha256=7mOn1OE0FNBSJ7C3CiLPqFXnHBb6LtJcAVgadVY7aHA,2432
|
202
|
+
deltacat/experimental/storage/rivulet/metastore/sst_interval_tree.py,sha256=3MQdduJF4TkSFJf9pMTTM8PofnpUpWkdlf0T1dMkzHY,10722
|
203
|
+
deltacat/experimental/storage/rivulet/mvp/Table.py,sha256=j82_-gF7byXx3a0yBCWVCtYH2H93qKPBD_1qp5GrlAA,3016
|
204
|
+
deltacat/experimental/storage/rivulet/mvp/__init__.py,sha256=28ULboqUHUGJuHjDWQgvG7cyR_ylV8fJ3B_wrsvI1f8,234
|
205
|
+
deltacat/experimental/storage/rivulet/parquet/__init__.py,sha256=1zx5IqSRMWsdW03kVmsphY28aWGzC9Tl-oGeoBUASgo,321
|
206
|
+
deltacat/experimental/storage/rivulet/parquet/data_reader.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
207
|
+
deltacat/experimental/storage/rivulet/parquet/file_reader.py,sha256=4Z0KTe14VquvqFSIRQlZ971L2RDqc_XkL8qO0OnjZEQ,4430
|
208
|
+
deltacat/experimental/storage/rivulet/parquet/serializer.py,sha256=SpILisUAg8Y--86aU4ZjQ24n_0kXOvEBHui2XC4R2sM,1575
|
209
|
+
deltacat/experimental/storage/rivulet/reader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
210
|
+
deltacat/experimental/storage/rivulet/reader/block_scanner.py,sha256=qVYCS_Cl7J9c-eQmv0QKxjkuMXL5oJoPAYnyEiFWPaU,15671
|
211
|
+
deltacat/experimental/storage/rivulet/reader/data_reader.py,sha256=kZTv2ErglqtILScvn2i7DDACW_2GcNPmnvuxmO0xdpA,4006
|
212
|
+
deltacat/experimental/storage/rivulet/reader/data_scan.py,sha256=-v4qrHQFHFg57yeweqfmhGuCjo539sQPVyNOvTSMUb4,2773
|
213
|
+
deltacat/experimental/storage/rivulet/reader/dataset_metastore.py,sha256=JtHYXl5g_NEazgT509Wq80HPWdU1Jm7MHJTyHqvcwnU,6307
|
214
|
+
deltacat/experimental/storage/rivulet/reader/dataset_reader.py,sha256=rRc0qB063mHToXZ4idA0lA01zL0xA3hrt-E7o8w699s,6236
|
215
|
+
deltacat/experimental/storage/rivulet/reader/pyarrow_data_reader.py,sha256=xjh0qAdpAuXpXIx7f7jfumofRXjQV0t_Gu61wtQ5u4E,4263
|
216
|
+
deltacat/experimental/storage/rivulet/reader/query_expression.py,sha256=S6EqP2Ru0liWbYws_ZKZz_aTCWJAHEGoZ2MUY5LZQLk,3121
|
217
|
+
deltacat/experimental/storage/rivulet/reader/reader_type_registrar.py,sha256=tIuYUOxOgFEBMNMKIXDqjHSR39IBTHyJpaz2FvwLl6Q,3083
|
218
|
+
deltacat/experimental/storage/rivulet/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
219
|
+
deltacat/experimental/storage/rivulet/schema/datatype.py,sha256=QKlMwaEuALV6viNnNSRN1PNFUg7edzooEO3Jp901j1I,4370
|
220
|
+
deltacat/experimental/storage/rivulet/schema/schema.py,sha256=zjREiUpSXaRRcdCHstmdaAR2ykAo1uDTbrJcDqmHVSQ,9474
|
221
|
+
deltacat/experimental/storage/rivulet/shard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
222
|
+
deltacat/experimental/storage/rivulet/shard/range_shard.py,sha256=uuulo-I9A2nXq2gY0qIMVC8yKf4xmVNhDheQ_SFBVFQ,4881
|
223
|
+
deltacat/experimental/storage/rivulet/writer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
224
|
+
deltacat/experimental/storage/rivulet/writer/dataset_writer.py,sha256=aLLwhMY9K5DENu_Rtqa3oWUmdPOYrP07BXntBW3pgdo,957
|
225
|
+
deltacat/experimental/storage/rivulet/writer/memtable_dataset_writer.py,sha256=jZJnxyB1PjoKgkoAfQzr-qXNISDcaSURLsbUVu6tImM,10164
|
226
|
+
deltacat/io/__init__.py,sha256=QgARmNDGbOKRV2g5HAG9GKL589zt4WUY3T6E6vWZRWI,382
|
227
|
+
deltacat/io/file_object_store.py,sha256=YoNL3Qla8uLOHaWnyBmIgotjSGAy3Td3Tumah0kk73Y,1868
|
228
|
+
deltacat/io/memcached_object_store.py,sha256=C96t77-4BQe0XZ4vC76Ygi2o1POUoMN4t4BiyPmulz0,10997
|
229
|
+
deltacat/io/object_store.py,sha256=z3Crt8TLyLyoRunOuXAri373TQZKFoz66QHpxGOV82U,1910
|
230
|
+
deltacat/io/ray_plasma_object_store.py,sha256=TyoUPWybE_cSISZ2SQa3YfD93QWMp0r82-6WnoVSmzk,905
|
231
|
+
deltacat/io/redis_object_store.py,sha256=OkbQNq1DUVYA7eupmZTF-9OvXUDTOl6WtEifonA5teg,4862
|
232
|
+
deltacat/io/s3_object_store.py,sha256=IxvLUvyQZ1w1oYwN9RvRgmKR0Dw56-GggYJw1UCyhBg,1911
|
233
|
+
deltacat/io/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
234
|
+
deltacat/io/dataset/deltacat_dataset.py,sha256=j2uJYq3gBZavoF457CACBZ4NE8VCfImdRbZ6AU_e3ig,3963
|
235
|
+
deltacat/io/datasink/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
236
|
+
deltacat/io/datasink/deltacat_datasink.py,sha256=TcXi_jegA0eawUDq3s6nTm3IcAV3B8noWsk7IPpgTdw,7836
|
237
|
+
deltacat/io/datasource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
238
|
+
deltacat/io/datasource/deltacat_datasource.py,sha256=_B-G_fqAR5ioYG5mfIsUeYVcttUdUbRqrGqCftbd_nw,21687
|
239
|
+
deltacat/io/reader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
240
|
+
deltacat/io/reader/deltacat_read_api.py,sha256=OSQ8PTWvyyRq5UTSFBlkFgphkJEm0EB5oztr_iszzHc,8394
|
241
|
+
deltacat/storage/__init__.py,sha256=ZS_wKjeRfKcWDkRRVTDWA3SI8SL1zg_aB3Npmnmpc7k,4100
|
242
|
+
deltacat/storage/interface.py,sha256=cj6BMmAWGxVGRoKupxBo61HfqiFl9eRS-Of60a-iWR4,26291
|
243
|
+
deltacat/storage/main/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
244
|
+
deltacat/storage/main/impl.py,sha256=3WNp7w1cqRhvxwSLbQMs6O0xhOK5ZgORMNsqx8rRWyU,101888
|
245
|
+
deltacat/storage/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
246
|
+
deltacat/storage/model/delta.py,sha256=E5rz9_QyDins_JvWFZIk9kOVxP_gNwrUBylW240Rw0o,17244
|
247
|
+
deltacat/storage/model/interop.py,sha256=CzXdu1NuJF5ER3IjQJztkNECD6MRDwbmMezlfN4SRH0,536
|
248
|
+
deltacat/storage/model/list_result.py,sha256=5DpRAu-c0M48cHtKdTRPSgQiq2nCWfjAY8LOVqp5wxI,2703
|
249
|
+
deltacat/storage/model/locator.py,sha256=s109oTrvizVx84-qhIHJ1nHa03bPEgIz5oKpkGz9f9k,4421
|
250
|
+
deltacat/storage/model/manifest.py,sha256=NnriTMm6waxixsjykfTABh4EWf985tA-A19AA2MSyEA,23865
|
251
|
+
deltacat/storage/model/metafile.py,sha256=g-dgFX5fmW51EGhjiN5jpHR1LTOhf0jhUIMBapRD1Rw,58619
|
252
|
+
deltacat/storage/model/namespace.py,sha256=9V1Qj232uc_UrVzZPIRzXyeYhJOYZ25wPLCx15-dx1Y,2630
|
253
|
+
deltacat/storage/model/partition.py,sha256=UcHcBQV0Kf_RnVIFzoYQo8MUdOrjZdWsaiGUv8FKXx4,24298
|
254
|
+
deltacat/storage/model/schema.py,sha256=jF8LvLvXUDI7pE2kv-LgGvGAuWRWC75JekqcS7147lc,122416
|
255
|
+
deltacat/storage/model/shard.py,sha256=boPOW45bwLwBazfXZpa3-C5SUSlgelpHf8Yl6357Bq0,1575
|
256
|
+
deltacat/storage/model/sort_key.py,sha256=68TJavprndKLESnWfCjXaeMwFE6tcq3ZVOHloE9rV6Q,7287
|
257
|
+
deltacat/storage/model/stream.py,sha256=VJgqVy4NS6IHLBLRf5OyehldZbIrarqGZYN07XF4Yp4,12609
|
258
|
+
deltacat/storage/model/table.py,sha256=ld2_yg6oOKPPtYaVBfIQxg9klcmwDUs7ZWa_EfJPp84,7710
|
259
|
+
deltacat/storage/model/table_version.py,sha256=fsz_wmnLKsjajTxgqqJ7cMOa2ygt59AdsFJTWc6zaMI,17780
|
260
|
+
deltacat/storage/model/transaction.py,sha256=TrKbnCh1NOjyu0y4bpuuTuEGNXalNiTzvWxecI84fDQ,68957
|
261
|
+
deltacat/storage/model/transform.py,sha256=OsF04_SPxh_BYo85gd95z_QZFLcNfYELV0ZV5UT1ElQ,9579
|
262
|
+
deltacat/storage/model/types.py,sha256=MHQSa7PIMPgSfyiLcs-6E9VoFCRAamQAExmHAgWJyeo,4644
|
263
|
+
deltacat/storage/model/expression/__init__.py,sha256=etUDuH5oaeKmE5da_ELgLVWTlLfemC2lwy9fHWEzy2k,802
|
264
|
+
deltacat/storage/model/expression/expression.py,sha256=PMsCbCbZ6EpJ-HSJw0CSJOtf7mvmnhyK-bSrP4UozZU,18209
|
265
|
+
deltacat/storage/model/expression/visitor.py,sha256=ROW4yxgi9r0ececrGHDRzxLQUP4wLe-nWyUhmKhS3X4,9853
|
266
|
+
deltacat/storage/model/scan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
267
|
+
deltacat/storage/model/scan/push_down.py,sha256=SldUHgv-HRDpEqIcsD9HI_XuofFI8BI0yRONO0zCcPQ,1034
|
268
|
+
deltacat/storage/model/scan/scan_plan.py,sha256=P59yYbQWXbKZU068GzIh7ya_h2n7NgZJBY_eWVfGLAU,250
|
269
|
+
deltacat/storage/model/scan/scan_task.py,sha256=pOcGKMjnHrZwabtdk3rw5kbh_d_aJGqzgCj6c_im1vE,855
|
270
|
+
deltacat/storage/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
271
|
+
deltacat/storage/util/scan_planner.py,sha256=yxvExB_rbTc5ijLdnSjJv0BAFGsNRqegzzDBUYzXZ-k,820
|
272
|
+
deltacat/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
273
|
+
deltacat/tests/conftest.py,sha256=XmzMV3HM7SVTnrc6k4veUE9b0AIkGJf0ms4g51X78FY,572
|
274
|
+
deltacat/tests/test_deltacat_api.py,sha256=3Rtf_GyDp0X7NXEOiCTsFOFS4U4IdwPGM2mvT9uoSH4,44278
|
275
|
+
deltacat/tests/test_exceptions.py,sha256=kAi5YyTpcOaz0noz0OgjfyRCtt9R0q5-bHxE9ZViUMk,3189
|
276
|
+
deltacat/tests/test_logs.py,sha256=ULmb3OJ8GGEpq_LFgcil-CPjZQpO9341Ws12svoct0s,6909
|
277
|
+
deltacat/tests/_io/__init__.py,sha256=Dl0ouF_riJ16kC2DhUqkL7BJHNrm09u-aMQQCgFD-as,107
|
278
|
+
deltacat/tests/_io/test_cloudpickle_bug_fix.py,sha256=mKxBDf090jh9yTdcui6-hYkigZpZI5-xCr1FIKDMkhU,1486
|
279
|
+
deltacat/tests/_io/test_file_object_store.py,sha256=bjORXnHe7Ea733XUUO0S2Su_oqSwGuO84TlIfoNO6qA,3587
|
280
|
+
deltacat/tests/_io/test_memcached_object_store.py,sha256=0EIaU5MHiEmIEkA4x5qUXFY9TE6TJ7V2RGH827cu3AU,9512
|
281
|
+
deltacat/tests/_io/test_ray_plasma_object_store.py,sha256=-wJZP6lRtEOogR25wjEiIBGz_lpvWVihwlZ5GqandZU,1911
|
282
|
+
deltacat/tests/_io/test_redis_object_store.py,sha256=4fCxb7PAqYixPbQZEPDwsDU3BEKfOkYxkhAI7V5Zdfc,4988
|
283
|
+
deltacat/tests/_io/test_s3_object_store.py,sha256=I8AbyrPfS32CAYvRHtn_OanL-XPpAnJeuCuhD-u9irQ,2270
|
284
|
+
deltacat/tests/_io/reader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
285
|
+
deltacat/tests/_io/reader/test_deltacat_read_api.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
286
|
+
deltacat/tests/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
287
|
+
deltacat/tests/aws/test_clients.py,sha256=23GMWfz27WWBDXSqphG9mfputsyS7j3I5P_HRk4YoKE,3790
|
288
|
+
deltacat/tests/aws/test_s3u.py,sha256=kL3cL37d-myF_NE0oP3SVTkhEt9yrqmJI83Xhr-i74Q,6869
|
289
|
+
deltacat/tests/catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
290
|
+
deltacat/tests/catalog/test_catalogs.py,sha256=MFS_fISQq7VGzjaVVM1K9O_QSE-02SN0gHwUtQ7m-HU,11696
|
291
|
+
deltacat/tests/catalog/test_default_catalog_impl.py,sha256=ISlJcuBVkYxUDsZuJoH1FyTeWtb7espbcFvcbY9OZ-o,468810
|
292
|
+
deltacat/tests/catalog/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
293
|
+
deltacat/tests/catalog/main/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
294
|
+
deltacat/tests/catalog/main/test_catalog_impl_namespace_operations.py,sha256=XvMoW1yjjoIs4-0A8_dqeY7ArysN6HJkSSHk7JnHeUI,4313
|
295
|
+
deltacat/tests/catalog/main/test_catalog_impl_table_operations.py,sha256=RFwcdQQhKA3doi0iDel5sWYy2VmPwsMmUsARe6qKNyk,67821
|
296
|
+
deltacat/tests/catalog/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
297
|
+
deltacat/tests/catalog/model/test_table_definition.py,sha256=R-_FGV-52o5fShItXrbcqt2-2ECjrDQmcOHWKBCU-HQ,574
|
298
|
+
deltacat/tests/compute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
299
|
+
deltacat/tests/compute/compact_partition_multiple_rounds_test_cases.py,sha256=g4DKJEn7BtLtuDIxYVq9ZkK1S91o4ftRB7-3jhDCJ4s,37694
|
300
|
+
deltacat/tests/compute/compact_partition_rebase_test_cases.py,sha256=IwA0w5gURCFlUCFxXmnTSIPh5mkiGKRMw1UB9yU9ESQ,16821
|
301
|
+
deltacat/tests/compute/compact_partition_rebase_then_incremental_test_cases.py,sha256=i6MZQEquGiCPLB1KAxxfkBWMOsXoNPtJw5X4lZCX2KQ,81302
|
302
|
+
deltacat/tests/compute/compact_partition_test_cases.py,sha256=2sFubqwJ2hYeHqkmBagfYJFZe9UVpKUEI8Zr24iLoUU,27210
|
303
|
+
deltacat/tests/compute/conftest.py,sha256=gBmdIV5jVw92QY_iuDeLUg8mJ7VUeTrEgd0b6KMM3dE,1009
|
304
|
+
deltacat/tests/compute/test_compact_partition_incremental.py,sha256=pazJ4hft6DulJ7_thWeFgY9o_pmNLPe9U0mUUWm0_ho,15512
|
305
|
+
deltacat/tests/compute/test_compact_partition_multiple_rounds.py,sha256=W9-6hrSWjDyDIiw0pfukakm7CEodLtkj2qKySqhoOis,13355
|
306
|
+
deltacat/tests/compute/test_compact_partition_params.py,sha256=jk_NDst6Kvt3-U8j5BxSYPp8NuEHH77EJ1u4itocEJA,8735
|
307
|
+
deltacat/tests/compute/test_compact_partition_rebase.py,sha256=pFuN_ieH_A0keOc7dXg654028axJhKTRSB4nnAwWvUo,12931
|
308
|
+
deltacat/tests/compute/test_compact_partition_rebase_then_incremental.py,sha256=Zz9BAvbzl4dv_DRBE7T8xCUy2GCT-1pczsoLUL6K3sI,17507
|
309
|
+
deltacat/tests/compute/test_janitor.py,sha256=oboH4wcvbtrxuQvZBiUJWTe2cAZF85sytKR9snslY9w,9841
|
310
|
+
deltacat/tests/compute/test_util_common.py,sha256=hVMc2-GML-8pxRfI3ls7s6rZLIcIQwpD7X8E4MsTmq8,36045
|
311
|
+
deltacat/tests/compute/test_util_constant.py,sha256=ybxpAqvm2_9f6dCv6-XdJXLXzJWUsx849bTdJLwOHxI,868
|
312
|
+
deltacat/tests/compute/compactor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
313
|
+
deltacat/tests/compute/compactor/steps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
314
|
+
deltacat/tests/compute/compactor/steps/test_repartition.py,sha256=Fcm3xFK2_BF-MYEspUDkJGqgSi2pw-h7T2VYrLarf2E,9255
|
315
|
+
deltacat/tests/compute/compactor/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
316
|
+
deltacat/tests/compute/compactor/utils/test_io.py,sha256=uoU_8TaWESRJm_nlLpLGbUINAR_cnYRsfmFf3xvOZCA,3678
|
317
|
+
deltacat/tests/compute/compactor/utils/test_round_completion_reader.py,sha256=yH2o9bUGQNmS-65d3Sy73Y6pEp4MFkGypZFwVQ4Lkxk,9741
|
318
|
+
deltacat/tests/compute/compactor_v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
319
|
+
deltacat/tests/compute/compactor_v2/test_compaction_session.py,sha256=EQyvgbJd6YvLiZZOBXQ-98PCNR2nHvrrcCSyeWORVQQ,28896
|
320
|
+
deltacat/tests/compute/compactor_v2/test_hashlib.py,sha256=8csF2hFWtBvY2MbX3-6iphCsVXxRp0zP1NTnKhfdmkg,328
|
321
|
+
deltacat/tests/compute/compactor_v2/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
322
|
+
deltacat/tests/compute/compactor_v2/utils/test_content_type_params.py,sha256=ouEnYU1Zbm1Kj_minC7QJInhWAzMi7iSMzYmaruwpDg,10203
|
323
|
+
deltacat/tests/compute/compactor_v2/utils/test_primary_key_index.py,sha256=aFb9rzT_EK9k8qAMHPtpqd5btyEmll1So1loDmZkotQ,1769
|
324
|
+
deltacat/tests/compute/compactor_v2/utils/test_task_options.py,sha256=JSt5xsuHKPwiAJvZMi2jGgUmx1HvoPnQBtU9Ff8DPiU,11350
|
325
|
+
deltacat/tests/compute/converter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
326
|
+
deltacat/tests/compute/converter/conftest.py,sha256=gRXJqf4qmHT1NVwS4dnqVUpTXMKw5vwPDc2hyPmM3Mg,2973
|
327
|
+
deltacat/tests/compute/converter/test_convert_session.py,sha256=-ee_30JS3PSHFvUtbFgKJoulBA4GlS0Z_oDyktNMT6k,30226
|
328
|
+
deltacat/tests/compute/converter/utils.py,sha256=wszeKufiRHWOHArQ4Nr4l1z0gH8oj8SNJrDRvSap2XI,4193
|
329
|
+
deltacat/tests/compute/resource_estimation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
330
|
+
deltacat/tests/compute/resource_estimation/test_delta.py,sha256=442EKgzG2EudK13ZeKMdnS6KH1GRr3Wy7ZlAeKfIOnA,28010
|
331
|
+
deltacat/tests/compute/resource_estimation/test_manifest.py,sha256=yrMvqDjolExdRf6Vtg5XaKDuaKz9ok15PCZ7_aJOYrI,32893
|
332
|
+
deltacat/tests/compute/resource_estimation/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
333
|
+
deltacat/tests/daft/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
334
|
+
deltacat/tests/daft/test_model.py,sha256=nqKZV1lUqvFzfyjrV1OxtJi3Fj33fcYIl9I0eguxAnQ,3953
|
335
|
+
deltacat/tests/experimental/__init__.py,sha256=BBPy5ik0lR5hn5qP44PHHdYvogkv4eB4JTN40IFyDgM,50
|
336
|
+
deltacat/tests/experimental/catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
337
|
+
deltacat/tests/experimental/catalog/iceberg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
338
|
+
deltacat/tests/experimental/catalog/iceberg/test_iceberg_catalog.py,sha256=K3YwWX8g_Tf7SQq-ruKj3_fAdPYvHdFYDB57byGhOGc,2029
|
339
|
+
deltacat/tests/experimental/compatibility/__init__.py,sha256=m0ODH1giFfyFIYQpQ05c1Ru6J_0lqMYv8lC_InjOWwU,43
|
340
|
+
deltacat/tests/experimental/compatibility/test_backfill_locator_to_id_mappings.py,sha256=4XunXKQB1USnLUJyxiNoQauAAbthq122Iz-mBNuXs9o,23611
|
341
|
+
deltacat/tests/experimental/daft/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
342
|
+
deltacat/tests/experimental/daft/test_deltacat_daft_integration.py,sha256=Vx-5MSPuvaUMHUBQ4cGhob26JWSxNqiHUYVMwvqfS2c,5102
|
343
|
+
deltacat/tests/experimental/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
344
|
+
deltacat/tests/experimental/storage/rivulet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
345
|
+
deltacat/tests/experimental/storage/rivulet/conftest.py,sha256=rtaU6iaCBlCbUiIc8UcVo5m4ADv8jN9N0FVi-36pS9o,3698
|
346
|
+
deltacat/tests/experimental/storage/rivulet/test_dataset.py,sha256=yD0c5r8a5IogAA_rvv3vM_waXQylA3oyUOHmvM_vcBI,13577
|
347
|
+
deltacat/tests/experimental/storage/rivulet/test_manifest.py,sha256=RS-cZQb7lkwpFFHNnU5varlVp_3njrjBw2B-84tEOPA,1943
|
348
|
+
deltacat/tests/experimental/storage/rivulet/test_sst_interval_tree.py,sha256=eBOFI4Z9GXxRwVTbnfhum-WNTTULyOV53gcvKQ8rfos,6866
|
349
|
+
deltacat/tests/experimental/storage/rivulet/test_utils.py,sha256=d9igdUG7BSoYVZN0-skxmKRPJ4HmDJE-P6wjh2qqk4Q,4469
|
350
|
+
deltacat/tests/experimental/storage/rivulet/fs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
351
|
+
deltacat/tests/experimental/storage/rivulet/fs/test_file_location_provider.py,sha256=TlIEWRZjmMSaCn5NoCDsis1lc4lNxD74tXUzm8rERO0,2842
|
352
|
+
deltacat/tests/experimental/storage/rivulet/reader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
353
|
+
deltacat/tests/experimental/storage/rivulet/reader/query_expression.py,sha256=6z3x5jEX3L0cUtvd-bx4HYWcMrxWf20PQ0USSxq6nTM,2312
|
354
|
+
deltacat/tests/experimental/storage/rivulet/reader/test_data_scan.py,sha256=NMEkkhJvT8Kkc7xXrb5lpN1nup964Qd3vwuo5FbvAE8,3105
|
355
|
+
deltacat/tests/experimental/storage/rivulet/reader/test_dataset_metastore.py,sha256=-OLXFgNHlqVw7ezm51f-x6YMZoBciXoR22BKw5LRH6E,2311
|
356
|
+
deltacat/tests/experimental/storage/rivulet/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
357
|
+
deltacat/tests/experimental/storage/rivulet/schema/test_schema.py,sha256=aefVhuRnpp60ddw3wiDVYcgl2WJFWhb1AFDHgBzvD0Y,7254
|
358
|
+
deltacat/tests/experimental/storage/rivulet/shard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
359
|
+
deltacat/tests/experimental/storage/rivulet/shard/test_range_shard.py,sha256=aUKD1ASNqUP0a6BOnnU-uVwkGsxtv6PXVGHyW6BeFxQ,4687
|
360
|
+
deltacat/tests/experimental/storage/rivulet/writer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
361
|
+
deltacat/tests/experimental/storage/rivulet/writer/test_dataset_write_then_read.py,sha256=-7bA8eS_vzDfwMJZjfnhg7ogp7jnMSZNEuxqthI9g-k,12299
|
362
|
+
deltacat/tests/experimental/storage/rivulet/writer/test_dataset_writer.py,sha256=1bqq9_yGSJD8sXEVDrzNsSA9nsMJ04k7PbxGpUZQ0a4,2884
|
363
|
+
deltacat/tests/experimental/storage/rivulet/writer/test_memtable_dataset_writer.py,sha256=www9mD_vugITO42ojHX8HmNiZxvveB0qYg-1MXwl2AA,2579
|
364
|
+
deltacat/tests/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
365
|
+
deltacat/tests/storage/main/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
366
|
+
deltacat/tests/storage/main/test_main_storage.py,sha256=T9gy-55w9RtuxW6wX7Zx7DGbTCTcKXtUguZm2d50ZNI,309738
|
367
|
+
deltacat/tests/storage/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
368
|
+
deltacat/tests/storage/model/test_delete_parameters.py,sha256=RcNRMIed0zUzkX9tRXDoYPXHb7721OEt8viY9tpWXZM,822
|
369
|
+
deltacat/tests/storage/model/test_expression.py,sha256=eySWacUo8EK1NwxMQnNqpXAVbG_fZTj7BfyircyKawM,11237
|
370
|
+
deltacat/tests/storage/model/test_manifest.py,sha256=udp9YUNvIBpnT-NutjMaF25abEQOXEcPkQm8Aay_UCs,3733
|
371
|
+
deltacat/tests/storage/model/test_metafile_io.py,sha256=t9_kyk_X42_UNN2elBPNMkf1x_u7AZS41kg0pQnHl1s,97925
|
372
|
+
deltacat/tests/storage/model/test_partition_scheme.py,sha256=_A79cE7vGEDErm6abMegy4qmZZ9tEUmwRHKUKHxUf-Y,2690
|
373
|
+
deltacat/tests/storage/model/test_schema.py,sha256=9RPV8rmDFDQ4Wh_XGcfDhOBKlSpRg20BWU5tvAtE0E0,16715
|
374
|
+
deltacat/tests/storage/model/test_schema_update.py,sha256=s2zE3if5ZdUSCmjF-_VQypQF3P3qgqRdcqn2b17s5KI,82453
|
375
|
+
deltacat/tests/storage/model/test_shard.py,sha256=gP8w1KMq73M4uMyQKsV6w1FFTSx0vdJ_ybA-Erqk2UY,785
|
376
|
+
deltacat/tests/storage/model/test_sort_scheme.py,sha256=Xu6YF6QiUorCQ3xbXwukuCIq1oWgUliKjk6DxqCfRiw,2771
|
377
|
+
deltacat/tests/storage/model/test_table_version.py,sha256=CtLiOe1EI6Ao9MkxyMWoxTWuqQevupVUEQVU5ZIEB34,3306
|
378
|
+
deltacat/tests/storage/model/test_transaction.py,sha256=Iz5ZpDBuIpjWuSW0d7TAF6ZnmyNXHypz3RFSbjD0efQ,28514
|
379
|
+
deltacat/tests/storage/model/test_transaction_history.py,sha256=0GUuH0Q9COmwIOn6OyPGOVV1knZQyfkrW5zugy7ZtT4,34756
|
380
|
+
deltacat/tests/test_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
381
|
+
deltacat/tests/test_utils/constants.py,sha256=UYe--9T_clYjiOpv0M7TtAMGdpje_SMZ-w8n0IeCAjc,214
|
382
|
+
deltacat/tests/test_utils/filesystem.py,sha256=H4LhAZ4q1yC4mrAv5EQQ_NaBeYtuFXKxxAyEvirTt4w,221
|
383
|
+
deltacat/tests/test_utils/message_pack_utils.py,sha256=RJ-zWXatCtxT-I3MCnujKi96fQChzee8fHgA4yl_XVk,1823
|
384
|
+
deltacat/tests/test_utils/pyarrow.py,sha256=DkQCFaxwnjIPlEjPhbz-3GYcZyGZbwRTKRSWeAe4cOA,3400
|
385
|
+
deltacat/tests/test_utils/storage.py,sha256=QNCSwPW6Rd9kMwzce0k4R-rI0YTYICUD6qHDXEp0kFg,7806
|
386
|
+
deltacat/tests/test_utils/utils.py,sha256=a32qEwcSSd1lvRi0aJJ4ZLnc1ZyXmoQF_K95zaQRk2M,455
|
387
|
+
deltacat/tests/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
388
|
+
deltacat/tests/types/test_tables.py,sha256=nyQalaqnOBfLV_UGdmQ5fGgfepMYyk4V5mcBvemUyKc,3316
|
389
|
+
deltacat/tests/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
390
|
+
deltacat/tests/utils/exceptions.py,sha256=8MQSX_JCL2gFczsSpaI6eMoN8aff9IbTLT1nihXjNVk,625
|
391
|
+
deltacat/tests/utils/main_deltacat_storage_mock.py,sha256=s4SZAS68gEotbprRKKWIMV8oLxAFhP0k4KZp281MuBI,961
|
392
|
+
deltacat/tests/utils/test_cloudpickle.py,sha256=J0pnBY3-PxlUh6MamZAN1PuquKQPr2iyzjiJ7-Rcl0o,1506
|
393
|
+
deltacat/tests/utils/test_daft.py,sha256=4K8TR2B6iEiYoAt3MznmYfDUcOn9JdZjsY99oqBjfSk,12383
|
394
|
+
deltacat/tests/utils/test_metrics.py,sha256=Ym9nOz1EtB180pLmvugihj1sDTNDMb5opIjjr5Nmcls,16339
|
395
|
+
deltacat/tests/utils/test_numpy.py,sha256=pxjnXQfCPkEqqg4gQvUuZ8n5en0oF1oKewm5ud3It5E,41074
|
396
|
+
deltacat/tests/utils/test_pandas.py,sha256=QwvK6rua1uPiWhv3Ea-cmljmDNK4iVFWUU3m3r9F7Z4,39296
|
397
|
+
deltacat/tests/utils/test_placement.py,sha256=g61wVOMkHe4YJeR9Oxg_BOVQ6bhHHbC3IBYv8YhUu94,597
|
398
|
+
deltacat/tests/utils/test_polars.py,sha256=0Lvyysx_wpunw0Mb2JB9wIOc6FpOb4gY_3nLKMEIVF8,37429
|
399
|
+
deltacat/tests/utils/test_pyarrow.py,sha256=GP3hqqhl3m-n-l5pbu2F2RlL9ExgSwRjijTvgUx3ooM,68151
|
400
|
+
deltacat/tests/utils/test_record_batch_tables.py,sha256=AkG1WyljQmjnl-AxhbFWyo5LnMIKRyLScfgC2B_ES-s,11321
|
401
|
+
deltacat/tests/utils/test_resources.py,sha256=HtpvDrfPZQNtGDXUlsIzc_yd7Vf1cDscZ3YbN0oTvO8,2560
|
402
|
+
deltacat/tests/utils/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
403
|
+
deltacat/tests/utils/ray_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
404
|
+
deltacat/tests/utils/ray_utils/test_concurrency.py,sha256=TjZpX0cjMDEIS79p_--j_BfT0zXKNkTLY1ZzNokBTs0,1211
|
405
|
+
deltacat/tests/utils/ray_utils/test_dataset.py,sha256=glfihM4FBqqIWcW5SdU-SYqhmeMIPfl8Krfzj0oEviI,6418
|
406
|
+
deltacat/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
407
|
+
deltacat/types/media.py,sha256=8V02OmOhkoWODaB2M6fiJy4FBcVzODuynR4QHtEHbTg,12283
|
408
|
+
deltacat/types/partial_download.py,sha256=QIpNTSwaiZ4TVl4A1N4PtblevKT5GwdXtGrouQMQs1E,2510
|
409
|
+
deltacat/types/tables.py,sha256=xAS_XBIOLr_Lp0C7kPD8Lk-ubDh6h-ZZtCFZLh-9vMs,85384
|
410
|
+
deltacat/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
411
|
+
deltacat/utils/arguments.py,sha256=WzEjt8N4rXE5Vkcirz18ppZguBENxYm8F8m97LshV1Y,2162
|
412
|
+
deltacat/utils/cloudpickle.py,sha256=XE7YDmQe56ksfl3NdYZkzOAhbHSuhNcBZGOehQpgZr0,1187
|
413
|
+
deltacat/utils/common.py,sha256=RG_-enXNpLKaYrqyx1ne2lL10lxN9vK7F631oJP6SE8,1375
|
414
|
+
deltacat/utils/daft.py,sha256=fM-y7JOUiTzVm13QY96LkQASiAUYZd3qUtmyfBdMq8k,34314
|
415
|
+
deltacat/utils/export.py,sha256=aiebPfWxtc-o7gCqDilcyMxb0GdAByW47dygtQ2Wrzg,1974
|
416
|
+
deltacat/utils/filesystem.py,sha256=jQ_vY0lBJcSuKqSOjSwB7q-s52ckYhJSvnGT_aYZvUc,16180
|
417
|
+
deltacat/utils/metafile_locator.py,sha256=AJ6o2V5Cc7rJE89wWyKmsFIWOxmGM2APs8DCynmuTjg,2984
|
418
|
+
deltacat/utils/metrics.py,sha256=HYKyZSrtVLu8gXezg_TMNUKJp4h1WWI0VEzn0Xlzf-I,10778
|
419
|
+
deltacat/utils/numpy.py,sha256=tgq4j_9q9bERxsr0-h3t55BrciS2ivr1AZe7R1DldkA,5524
|
420
|
+
deltacat/utils/pandas.py,sha256=4C9cdGDDUP9SSytjtgSdkhivrmmF43TwxN2qJhxsBKg,31226
|
421
|
+
deltacat/utils/performance.py,sha256=7ZLaMkS1ehPSIhT5uOQVBHvjC70iKHzoFquFo-KL0PI,645
|
422
|
+
deltacat/utils/placement.py,sha256=Lj20fb-eq8rgMdm_M2MBMfDLwhDM1sS1nJj2DvIK56s,12060
|
423
|
+
deltacat/utils/polars.py,sha256=iYmgGRWrCjPEqwrf8bFY-oIjKfvo7jZar_GRagYxhTg,28838
|
424
|
+
deltacat/utils/pyarrow.py,sha256=YwtYrWCWzEVFipQ-oE7lHpCYjJTdJujl9sPub8xtLYo,74233
|
425
|
+
deltacat/utils/reader_compatibility_mapping.py,sha256=fZcNdw4kamkQF-ZzvBC4Zp_sbjxp0yOVIhLgV6V2Ee8,91409
|
426
|
+
deltacat/utils/resources.py,sha256=Ax1OgLLbZI4oYpp4Ki27OLaST-7I-AJgZwU87FVfY8g,8253
|
427
|
+
deltacat/utils/schema.py,sha256=m4Wm4ZQcpttzOUxex4dVneGlHy1_E36HspTcjNYzvVM,1564
|
428
|
+
deltacat/utils/url.py,sha256=Meg4PQGzd_NQa966O0bcdyhalUoZ6-lt_A2g6suuqfI,44832
|
429
|
+
deltacat/utils/ray_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
430
|
+
deltacat/utils/ray_utils/collections.py,sha256=hj20s4D2RF2jZETU_44r6mFbsczA0JI_I_4kWKTmqes,1951
|
431
|
+
deltacat/utils/ray_utils/concurrency.py,sha256=Ceui6nQYKHTUOTltHNQIdb0OWHFhD73o8DhSXP-DYRQ,5457
|
432
|
+
deltacat/utils/ray_utils/dataset.py,sha256=5RnVqFlKoZ6zabnQfjfXAKWuXDMKvLp4eNcDgpFj3OM,6480
|
433
|
+
deltacat/utils/ray_utils/performance.py,sha256=d7JFM7vTXHzkGx9qNQcZzUWajnqINvYRwaM088_FpsE,464
|
434
|
+
deltacat/utils/ray_utils/runtime.py,sha256=cf5koY9q4TzRg--BjPtC6y0jztq45F39KcC4K6Wmg4w,6946
|
435
|
+
deltacat-2.0.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
436
|
+
deltacat-2.0.0.dist-info/METADATA,sha256=a_C8BbNl9k8S880Nhcl9EV2nDwydx5hOiFVWUrzpC7I,46946
|
437
|
+
deltacat-2.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
438
|
+
deltacat-2.0.0.dist-info/top_level.txt,sha256=RWdIcid4Bv2i2ozLVh-70kJpyB61xEKXod9XXGpiono,9
|
439
|
+
deltacat-2.0.0.dist-info/RECORD,,
|
@@ -1,19 +0,0 @@
|
|
1
|
-
from deltacat.aws.redshift.model.manifest import (
|
2
|
-
EntryFileParams,
|
3
|
-
EntryType,
|
4
|
-
Manifest,
|
5
|
-
ManifestAuthor,
|
6
|
-
ManifestEntry,
|
7
|
-
ManifestEntryList,
|
8
|
-
ManifestMeta,
|
9
|
-
)
|
10
|
-
|
11
|
-
__all__ = [
|
12
|
-
"EntryFileParams",
|
13
|
-
"EntryType",
|
14
|
-
"Manifest",
|
15
|
-
"ManifestAuthor",
|
16
|
-
"ManifestEntry",
|
17
|
-
"ManifestMeta",
|
18
|
-
"ManifestEntryList",
|
19
|
-
]
|