pypaimon-rust 0.1.0__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.
Files changed (209) hide show
  1. pypaimon_rust-0.1.0/Cargo.lock +6120 -0
  2. pypaimon_rust-0.1.0/Cargo.toml +43 -0
  3. pypaimon_rust-0.1.0/LICENSE +201 -0
  4. pypaimon_rust-0.1.0/NOTICE +5 -0
  5. pypaimon_rust-0.1.0/PKG-INFO +89 -0
  6. pypaimon_rust-0.1.0/bindings/python/.gitignore +25 -0
  7. pypaimon_rust-0.1.0/bindings/python/Cargo.toml +37 -0
  8. pypaimon_rust-0.1.0/bindings/python/DEPENDENCIES.rust.tsv +475 -0
  9. pypaimon_rust-0.1.0/bindings/python/LICENSE +201 -0
  10. pypaimon_rust-0.1.0/bindings/python/Makefile +26 -0
  11. pypaimon_rust-0.1.0/bindings/python/NOTICE +5 -0
  12. pypaimon_rust-0.1.0/bindings/python/README.md +72 -0
  13. pypaimon_rust-0.1.0/bindings/python/project-description.md +69 -0
  14. pypaimon_rust-0.1.0/bindings/python/src/context.rs +97 -0
  15. pypaimon_rust-0.1.0/bindings/python/src/error.rs +23 -0
  16. pypaimon_rust-0.1.0/bindings/python/src/lib.rs +27 -0
  17. pypaimon_rust-0.1.0/bindings/python/tests/test_datafusion.py +44 -0
  18. pypaimon_rust-0.1.0/crates/integrations/datafusion/Cargo.toml +51 -0
  19. pypaimon_rust-0.1.0/crates/integrations/datafusion/DEPENDENCIES.rust.tsv +419 -0
  20. pypaimon_rust-0.1.0/crates/integrations/datafusion/README.md +27 -0
  21. pypaimon_rust-0.1.0/crates/integrations/datafusion/src/catalog.rs +258 -0
  22. pypaimon_rust-0.1.0/crates/integrations/datafusion/src/error.rs +23 -0
  23. pypaimon_rust-0.1.0/crates/integrations/datafusion/src/filter_pushdown.rs +536 -0
  24. pypaimon_rust-0.1.0/crates/integrations/datafusion/src/full_text_search.rs +256 -0
  25. pypaimon_rust-0.1.0/crates/integrations/datafusion/src/lib.rs +60 -0
  26. pypaimon_rust-0.1.0/crates/integrations/datafusion/src/merge_into.rs +796 -0
  27. pypaimon_rust-0.1.0/crates/integrations/datafusion/src/physical_plan/mod.rs +22 -0
  28. pypaimon_rust-0.1.0/crates/integrations/datafusion/src/physical_plan/scan.rs +382 -0
  29. pypaimon_rust-0.1.0/crates/integrations/datafusion/src/physical_plan/sink.rs +109 -0
  30. pypaimon_rust-0.1.0/crates/integrations/datafusion/src/relation_planner.rs +201 -0
  31. pypaimon_rust-0.1.0/crates/integrations/datafusion/src/runtime.rs +74 -0
  32. pypaimon_rust-0.1.0/crates/integrations/datafusion/src/sql_handler.rs +1280 -0
  33. pypaimon_rust-0.1.0/crates/integrations/datafusion/src/system_tables/mod.rs +161 -0
  34. pypaimon_rust-0.1.0/crates/integrations/datafusion/src/system_tables/options.rs +92 -0
  35. pypaimon_rust-0.1.0/crates/integrations/datafusion/src/table/mod.rs +645 -0
  36. pypaimon_rust-0.1.0/crates/integrations/datafusion/src/update.rs +410 -0
  37. pypaimon_rust-0.1.0/crates/integrations/datafusion/tests/merge_into_tests.rs +1212 -0
  38. pypaimon_rust-0.1.0/crates/integrations/datafusion/tests/read_tables.rs +895 -0
  39. pypaimon_rust-0.1.0/crates/integrations/datafusion/tests/sql_handler_tests.rs +497 -0
  40. pypaimon_rust-0.1.0/crates/integrations/datafusion/tests/system_tables.rs +145 -0
  41. pypaimon_rust-0.1.0/crates/paimon/Cargo.toml +92 -0
  42. pypaimon_rust-0.1.0/crates/paimon/DEPENDENCIES.rust.tsv +369 -0
  43. pypaimon_rust-0.1.0/crates/paimon/README.md +27 -0
  44. pypaimon_rust-0.1.0/crates/paimon/examples/rest_catalog_example.rs +296 -0
  45. pypaimon_rust-0.1.0/crates/paimon/src/api/api_request.rs +134 -0
  46. pypaimon_rust-0.1.0/crates/paimon/src/api/api_response.rs +342 -0
  47. pypaimon_rust-0.1.0/crates/paimon/src/api/auth/base.rs +128 -0
  48. pypaimon_rust-0.1.0/crates/paimon/src/api/auth/bearer_provider.rs +103 -0
  49. pypaimon_rust-0.1.0/crates/paimon/src/api/auth/dlf_provider.rs +476 -0
  50. pypaimon_rust-0.1.0/crates/paimon/src/api/auth/dlf_signer.rs +650 -0
  51. pypaimon_rust-0.1.0/crates/paimon/src/api/auth/factory.rs +252 -0
  52. pypaimon_rust-0.1.0/crates/paimon/src/api/auth/mod.rs +29 -0
  53. pypaimon_rust-0.1.0/crates/paimon/src/api/mod.rs +53 -0
  54. pypaimon_rust-0.1.0/crates/paimon/src/api/resource_paths.rs +181 -0
  55. pypaimon_rust-0.1.0/crates/paimon/src/api/rest_api.rs +422 -0
  56. pypaimon_rust-0.1.0/crates/paimon/src/api/rest_client.rs +278 -0
  57. pypaimon_rust-0.1.0/crates/paimon/src/api/rest_error.rs +146 -0
  58. pypaimon_rust-0.1.0/crates/paimon/src/api/rest_util.rs +98 -0
  59. pypaimon_rust-0.1.0/crates/paimon/src/arrow/filtering.rs +165 -0
  60. pypaimon_rust-0.1.0/crates/paimon/src/arrow/format/avro.rs +946 -0
  61. pypaimon_rust-0.1.0/crates/paimon/src/arrow/format/mod.rs +121 -0
  62. pypaimon_rust-0.1.0/crates/paimon/src/arrow/format/orc.rs +195 -0
  63. pypaimon_rust-0.1.0/crates/paimon/src/arrow/format/parquet.rs +1411 -0
  64. pypaimon_rust-0.1.0/crates/paimon/src/arrow/mod.rs +464 -0
  65. pypaimon_rust-0.1.0/crates/paimon/src/arrow/schema_evolution.rs +151 -0
  66. pypaimon_rust-0.1.0/crates/paimon/src/btree/block.rs +618 -0
  67. pypaimon_rust-0.1.0/crates/paimon/src/btree/footer.rs +243 -0
  68. pypaimon_rust-0.1.0/crates/paimon/src/btree/key_serde.rs +153 -0
  69. pypaimon_rust-0.1.0/crates/paimon/src/btree/meta.rs +221 -0
  70. pypaimon_rust-0.1.0/crates/paimon/src/btree/mod.rs +59 -0
  71. pypaimon_rust-0.1.0/crates/paimon/src/btree/query.rs +161 -0
  72. pypaimon_rust-0.1.0/crates/paimon/src/btree/reader.rs +421 -0
  73. pypaimon_rust-0.1.0/crates/paimon/src/btree/sst_file.rs +331 -0
  74. pypaimon_rust-0.1.0/crates/paimon/src/btree/test_util.rs +69 -0
  75. pypaimon_rust-0.1.0/crates/paimon/src/btree/tests.rs +599 -0
  76. pypaimon_rust-0.1.0/crates/paimon/src/btree/var_len.rs +147 -0
  77. pypaimon_rust-0.1.0/crates/paimon/src/btree/writer.rs +209 -0
  78. pypaimon_rust-0.1.0/crates/paimon/src/catalog/database.rs +42 -0
  79. pypaimon_rust-0.1.0/crates/paimon/src/catalog/factory.rs +156 -0
  80. pypaimon_rust-0.1.0/crates/paimon/src/catalog/filesystem.rs +589 -0
  81. pypaimon_rust-0.1.0/crates/paimon/src/catalog/mod.rs +230 -0
  82. pypaimon_rust-0.1.0/crates/paimon/src/catalog/rest/mod.rs +29 -0
  83. pypaimon_rust-0.1.0/crates/paimon/src/catalog/rest/rest_catalog.rs +399 -0
  84. pypaimon_rust-0.1.0/crates/paimon/src/catalog/rest/rest_token.rs +39 -0
  85. pypaimon_rust-0.1.0/crates/paimon/src/catalog/rest/rest_token_file_io.rs +193 -0
  86. pypaimon_rust-0.1.0/crates/paimon/src/common/mod.rs +22 -0
  87. pypaimon_rust-0.1.0/crates/paimon/src/common/options.rs +217 -0
  88. pypaimon_rust-0.1.0/crates/paimon/src/deletion_vector/core.rs +212 -0
  89. pypaimon_rust-0.1.0/crates/paimon/src/deletion_vector/factory.rs +77 -0
  90. pypaimon_rust-0.1.0/crates/paimon/src/deletion_vector/mod.rs +23 -0
  91. pypaimon_rust-0.1.0/crates/paimon/src/error.rs +152 -0
  92. pypaimon_rust-0.1.0/crates/paimon/src/file_index/file_index_format.rs +523 -0
  93. pypaimon_rust-0.1.0/crates/paimon/src/file_index/mod.rs +19 -0
  94. pypaimon_rust-0.1.0/crates/paimon/src/io/file_io.rs +777 -0
  95. pypaimon_rust-0.1.0/crates/paimon/src/io/mod.rs +47 -0
  96. pypaimon_rust-0.1.0/crates/paimon/src/io/storage.rs +275 -0
  97. pypaimon_rust-0.1.0/crates/paimon/src/io/storage_fs.rs +29 -0
  98. pypaimon_rust-0.1.0/crates/paimon/src/io/storage_hdfs.rs +212 -0
  99. pypaimon_rust-0.1.0/crates/paimon/src/io/storage_memory.rs +25 -0
  100. pypaimon_rust-0.1.0/crates/paimon/src/io/storage_oss.rs +148 -0
  101. pypaimon_rust-0.1.0/crates/paimon/src/io/storage_s3.rs +415 -0
  102. pypaimon_rust-0.1.0/crates/paimon/src/lib.rs +49 -0
  103. pypaimon_rust-0.1.0/crates/paimon/src/predicate_stats.rs +195 -0
  104. pypaimon_rust-0.1.0/crates/paimon/src/spec/binary_row.rs +1046 -0
  105. pypaimon_rust-0.1.0/crates/paimon/src/spec/core_options.rs +502 -0
  106. pypaimon_rust-0.1.0/crates/paimon/src/spec/data_file.rs +122 -0
  107. pypaimon_rust-0.1.0/crates/paimon/src/spec/index_file_meta.rs +158 -0
  108. pypaimon_rust-0.1.0/crates/paimon/src/spec/index_manifest.rs +188 -0
  109. pypaimon_rust-0.1.0/crates/paimon/src/spec/manifest.rs +86 -0
  110. pypaimon_rust-0.1.0/crates/paimon/src/spec/manifest_common.rs +37 -0
  111. pypaimon_rust-0.1.0/crates/paimon/src/spec/manifest_entry.rs +202 -0
  112. pypaimon_rust-0.1.0/crates/paimon/src/spec/manifest_file_meta.rs +155 -0
  113. pypaimon_rust-0.1.0/crates/paimon/src/spec/manifest_list.rs +120 -0
  114. pypaimon_rust-0.1.0/crates/paimon/src/spec/mod.rs +74 -0
  115. pypaimon_rust-0.1.0/crates/paimon/src/spec/murmur_hash.rs +97 -0
  116. pypaimon_rust-0.1.0/crates/paimon/src/spec/objects_file.rs +268 -0
  117. pypaimon_rust-0.1.0/crates/paimon/src/spec/partition_statistics.rs +34 -0
  118. pypaimon_rust-0.1.0/crates/paimon/src/spec/partition_utils.rs +1053 -0
  119. pypaimon_rust-0.1.0/crates/paimon/src/spec/predicate.rs +1884 -0
  120. pypaimon_rust-0.1.0/crates/paimon/src/spec/schema.rs +773 -0
  121. pypaimon_rust-0.1.0/crates/paimon/src/spec/schema_change.rs +431 -0
  122. pypaimon_rust-0.1.0/crates/paimon/src/spec/snapshot.rs +297 -0
  123. pypaimon_rust-0.1.0/crates/paimon/src/spec/stats.rs +100 -0
  124. pypaimon_rust-0.1.0/crates/paimon/src/spec/types.rs +2188 -0
  125. pypaimon_rust-0.1.0/crates/paimon/src/table/bin_pack.rs +191 -0
  126. pypaimon_rust-0.1.0/crates/paimon/src/table/bucket_filter.rs +193 -0
  127. pypaimon_rust-0.1.0/crates/paimon/src/table/commit_message.rs +41 -0
  128. pypaimon_rust-0.1.0/crates/paimon/src/table/data_evolution_reader.rs +455 -0
  129. pypaimon_rust-0.1.0/crates/paimon/src/table/data_evolution_writer.rs +862 -0
  130. pypaimon_rust-0.1.0/crates/paimon/src/table/data_file_reader.rs +457 -0
  131. pypaimon_rust-0.1.0/crates/paimon/src/table/data_file_writer.rs +266 -0
  132. pypaimon_rust-0.1.0/crates/paimon/src/table/full_text_search_builder.rs +207 -0
  133. pypaimon_rust-0.1.0/crates/paimon/src/table/global_index_scanner.rs +946 -0
  134. pypaimon_rust-0.1.0/crates/paimon/src/table/mod.rs +164 -0
  135. pypaimon_rust-0.1.0/crates/paimon/src/table/read_builder.rs +632 -0
  136. pypaimon_rust-0.1.0/crates/paimon/src/table/rest_env.rs +61 -0
  137. pypaimon_rust-0.1.0/crates/paimon/src/table/row_id_predicate.rs +263 -0
  138. pypaimon_rust-0.1.0/crates/paimon/src/table/schema_manager.rs +103 -0
  139. pypaimon_rust-0.1.0/crates/paimon/src/table/snapshot_commit.rs +98 -0
  140. pypaimon_rust-0.1.0/crates/paimon/src/table/snapshot_manager.rs +369 -0
  141. pypaimon_rust-0.1.0/crates/paimon/src/table/source.rs +742 -0
  142. pypaimon_rust-0.1.0/crates/paimon/src/table/stats_filter.rs +443 -0
  143. pypaimon_rust-0.1.0/crates/paimon/src/table/table_commit.rs +1313 -0
  144. pypaimon_rust-0.1.0/crates/paimon/src/table/table_read.rs +110 -0
  145. pypaimon_rust-0.1.0/crates/paimon/src/table/table_scan.rs +1444 -0
  146. pypaimon_rust-0.1.0/crates/paimon/src/table/table_write.rs +792 -0
  147. pypaimon_rust-0.1.0/crates/paimon/src/table/tag_manager.rs +89 -0
  148. pypaimon_rust-0.1.0/crates/paimon/src/table/write_builder.rs +51 -0
  149. pypaimon_rust-0.1.0/crates/paimon/src/tantivy/directory.rs +399 -0
  150. pypaimon_rust-0.1.0/crates/paimon/src/tantivy/full_text_search.rs +176 -0
  151. pypaimon_rust-0.1.0/crates/paimon/src/tantivy/mod.rs +23 -0
  152. pypaimon_rust-0.1.0/crates/paimon/src/tantivy/reader.rs +198 -0
  153. pypaimon_rust-0.1.0/crates/paimon/src/tantivy/writer.rs +242 -0
  154. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/array_type.json +1 -0
  155. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/array_type_nullable.json +1 -0
  156. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/bigint_type.json +1 -0
  157. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/bigint_type_nullable.json +1 -0
  158. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/binary_type.json +1 -0
  159. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/binary_type_nullable.json +1 -0
  160. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/boolean_type.json +1 -0
  161. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/boolean_type_nullable.json +1 -0
  162. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/char_type.json +1 -0
  163. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/char_type_nullable.json +1 -0
  164. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/date_type.json +1 -0
  165. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/date_type_nullable.json +1 -0
  166. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/decimal_type.json +1 -0
  167. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/decimal_type_nullable.json +1 -0
  168. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/double_type.json +1 -0
  169. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/double_type_nullable.json +1 -0
  170. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/float_type.json +1 -0
  171. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/float_type_nullable.json +1 -0
  172. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/highly_complex_nested_row_type.json +1 -0
  173. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/index/index-7e53780d-2faa-4e4c-9f2e-93af5082bbdb-0 +0 -0
  174. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/int_type.json +1 -0
  175. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/int_type_nullable.json +1 -0
  176. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/local_zoned_timestamp_type.json +1 -0
  177. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/local_zoned_timestamp_type_nullable.json +1 -0
  178. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/manifest/index-manifest-7e816ed9-9f3b-4786-9985-8937d4e07b6e-0 +0 -0
  179. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/manifest/manifest-8ded1f09-fcda-489e-9167-582ac0f9f846-0 +0 -0
  180. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/manifest/manifest-list-5c7399a0-46ae-4a5e-9c13-3ab07212cdb6-0 +0 -0
  181. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/manifest_file_meta_schema.json +1 -0
  182. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/map_type.json +1 -0
  183. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/map_type_nullable.json +1 -0
  184. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/multiset_type.json +1 -0
  185. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/multiset_type_nullable.json +1 -0
  186. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/row_type.json +1 -0
  187. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/row_type_nullable.json +1 -0
  188. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/smallint_type.json +1 -0
  189. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/smallint_type_nullable.json +1 -0
  190. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/snapshot/snapshot-v3-none-field.json +16 -0
  191. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/snapshot/snapshot-v3.json +17 -0
  192. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/time_type.json +1 -0
  193. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/time_type_nullable.json +1 -0
  194. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/timestamp_type.json +1 -0
  195. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/timestamp_type_nullable.json +1 -0
  196. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/tinyint_type.json +1 -0
  197. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/tinyint_type_nullable.json +1 -0
  198. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/varbinary_type.json +1 -0
  199. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/varbinary_type_nullable.json +1 -0
  200. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/varchar_type.json +1 -0
  201. pypaimon_rust-0.1.0/crates/paimon/tests/fixtures/varchar_type_nullable.json +1 -0
  202. pypaimon_rust-0.1.0/crates/paimon/tests/mock_server.rs +756 -0
  203. pypaimon_rust-0.1.0/crates/paimon/tests/rest_api_test.rs +474 -0
  204. pypaimon_rust-0.1.0/crates/paimon/tests/rest_catalog_test.rs +452 -0
  205. pypaimon_rust-0.1.0/project-description.md +69 -0
  206. pypaimon_rust-0.1.0/pyproject.toml +58 -0
  207. pypaimon_rust-0.1.0/python/pypaimon_rust/__init__.py +18 -0
  208. pypaimon_rust-0.1.0/python/pypaimon_rust/datafusion.pyi +22 -0
  209. pypaimon_rust-0.1.0/python/pypaimon_rust/py.typed +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.