datafusion 52.0.0__tar.gz → 52.3.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 (123) hide show
  1. {datafusion-52.0.0 → datafusion-52.3.0}/Cargo.lock +73 -74
  2. {datafusion-52.0.0 → datafusion-52.3.0}/Cargo.toml +5 -5
  3. {datafusion-52.0.0 → datafusion-52.3.0}/PKG-INFO +1 -1
  4. {datafusion-52.0.0 → datafusion-52.3.0}/src/lib.rs +2 -2
  5. {datafusion-52.0.0 → datafusion-52.3.0}/LICENSE.txt +0 -0
  6. {datafusion-52.0.0 → datafusion-52.3.0}/README.md +0 -0
  7. {datafusion-52.0.0 → datafusion-52.3.0}/build.rs +0 -0
  8. {datafusion-52.0.0 → datafusion-52.3.0}/pyproject.toml +0 -0
  9. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/__init__.py +0 -0
  10. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/catalog.py +0 -0
  11. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/col.py +0 -0
  12. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/common.py +0 -0
  13. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/context.py +0 -0
  14. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/dataframe.py +0 -0
  15. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/dataframe_formatter.py +0 -0
  16. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/expr.py +0 -0
  17. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/functions.py +0 -0
  18. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/html_formatter.py +0 -0
  19. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/input/__init__.py +0 -0
  20. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/input/base.py +0 -0
  21. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/input/location.py +0 -0
  22. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/io.py +0 -0
  23. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/object_store.py +0 -0
  24. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/options.py +0 -0
  25. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/plan.py +0 -0
  26. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/py.typed +0 -0
  27. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/record_batch.py +0 -0
  28. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/substrait.py +0 -0
  29. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/udf.py +0 -0
  30. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/unparser.py +0 -0
  31. {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/user_defined.py +0 -0
  32. {datafusion-52.0.0 → datafusion-52.3.0}/src/array.rs +0 -0
  33. {datafusion-52.0.0 → datafusion-52.3.0}/src/catalog.rs +0 -0
  34. {datafusion-52.0.0 → datafusion-52.3.0}/src/common/data_type.rs +0 -0
  35. {datafusion-52.0.0 → datafusion-52.3.0}/src/common/df_schema.rs +0 -0
  36. {datafusion-52.0.0 → datafusion-52.3.0}/src/common/function.rs +0 -0
  37. {datafusion-52.0.0 → datafusion-52.3.0}/src/common/schema.rs +0 -0
  38. {datafusion-52.0.0 → datafusion-52.3.0}/src/common.rs +0 -0
  39. {datafusion-52.0.0 → datafusion-52.3.0}/src/config.rs +0 -0
  40. {datafusion-52.0.0 → datafusion-52.3.0}/src/context.rs +0 -0
  41. {datafusion-52.0.0 → datafusion-52.3.0}/src/dataframe.rs +0 -0
  42. {datafusion-52.0.0 → datafusion-52.3.0}/src/dataset.rs +0 -0
  43. {datafusion-52.0.0 → datafusion-52.3.0}/src/dataset_exec.rs +0 -0
  44. {datafusion-52.0.0 → datafusion-52.3.0}/src/errors.rs +0 -0
  45. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/aggregate.rs +0 -0
  46. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/aggregate_expr.rs +0 -0
  47. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/alias.rs +0 -0
  48. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/analyze.rs +0 -0
  49. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/between.rs +0 -0
  50. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/binary_expr.rs +0 -0
  51. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/bool_expr.rs +0 -0
  52. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/case.rs +0 -0
  53. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/cast.rs +0 -0
  54. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/column.rs +0 -0
  55. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/conditional_expr.rs +0 -0
  56. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/copy_to.rs +0 -0
  57. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/create_catalog.rs +0 -0
  58. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/create_catalog_schema.rs +0 -0
  59. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/create_external_table.rs +0 -0
  60. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/create_function.rs +0 -0
  61. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/create_index.rs +0 -0
  62. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/create_memory_table.rs +0 -0
  63. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/create_view.rs +0 -0
  64. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/describe_table.rs +0 -0
  65. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/distinct.rs +0 -0
  66. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/dml.rs +0 -0
  67. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/drop_catalog_schema.rs +0 -0
  68. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/drop_function.rs +0 -0
  69. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/drop_table.rs +0 -0
  70. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/drop_view.rs +0 -0
  71. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/empty_relation.rs +0 -0
  72. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/exists.rs +0 -0
  73. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/explain.rs +0 -0
  74. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/extension.rs +0 -0
  75. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/filter.rs +0 -0
  76. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/grouping_set.rs +0 -0
  77. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/in_list.rs +0 -0
  78. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/in_subquery.rs +0 -0
  79. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/indexed_field.rs +0 -0
  80. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/join.rs +0 -0
  81. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/like.rs +0 -0
  82. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/limit.rs +0 -0
  83. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/literal.rs +0 -0
  84. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/logical_node.rs +0 -0
  85. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/placeholder.rs +0 -0
  86. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/projection.rs +0 -0
  87. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/recursive_query.rs +0 -0
  88. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/repartition.rs +0 -0
  89. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/scalar_subquery.rs +0 -0
  90. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/scalar_variable.rs +0 -0
  91. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/signature.rs +0 -0
  92. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/sort.rs +0 -0
  93. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/sort_expr.rs +0 -0
  94. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/statement.rs +0 -0
  95. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/subquery.rs +0 -0
  96. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/subquery_alias.rs +0 -0
  97. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/table_scan.rs +0 -0
  98. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/union.rs +0 -0
  99. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/unnest.rs +0 -0
  100. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/unnest_expr.rs +0 -0
  101. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/values.rs +0 -0
  102. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/window.rs +0 -0
  103. {datafusion-52.0.0 → datafusion-52.3.0}/src/expr.rs +0 -0
  104. {datafusion-52.0.0 → datafusion-52.3.0}/src/functions.rs +0 -0
  105. {datafusion-52.0.0 → datafusion-52.3.0}/src/options.rs +0 -0
  106. {datafusion-52.0.0 → datafusion-52.3.0}/src/physical_plan.rs +0 -0
  107. {datafusion-52.0.0 → datafusion-52.3.0}/src/pyarrow_filter_expression.rs +0 -0
  108. {datafusion-52.0.0 → datafusion-52.3.0}/src/pyarrow_util.rs +0 -0
  109. {datafusion-52.0.0 → datafusion-52.3.0}/src/record_batch.rs +0 -0
  110. {datafusion-52.0.0 → datafusion-52.3.0}/src/sql/exceptions.rs +0 -0
  111. {datafusion-52.0.0 → datafusion-52.3.0}/src/sql/logical.rs +0 -0
  112. {datafusion-52.0.0 → datafusion-52.3.0}/src/sql/util.rs +0 -0
  113. {datafusion-52.0.0 → datafusion-52.3.0}/src/sql.rs +0 -0
  114. {datafusion-52.0.0 → datafusion-52.3.0}/src/store.rs +0 -0
  115. {datafusion-52.0.0 → datafusion-52.3.0}/src/substrait.rs +0 -0
  116. {datafusion-52.0.0 → datafusion-52.3.0}/src/table.rs +0 -0
  117. {datafusion-52.0.0 → datafusion-52.3.0}/src/udaf.rs +0 -0
  118. {datafusion-52.0.0 → datafusion-52.3.0}/src/udf.rs +0 -0
  119. {datafusion-52.0.0 → datafusion-52.3.0}/src/udtf.rs +0 -0
  120. {datafusion-52.0.0 → datafusion-52.3.0}/src/udwf.rs +0 -0
  121. {datafusion-52.0.0 → datafusion-52.3.0}/src/unparser/dialect.rs +0 -0
  122. {datafusion-52.0.0 → datafusion-52.3.0}/src/unparser/mod.rs +0 -0
  123. {datafusion-52.0.0 → datafusion-52.3.0}/src/utils.rs +0 -0
@@ -900,9 +900,9 @@ dependencies = [
900
900
 
901
901
  [[package]]
902
902
  name = "datafusion"
903
- version = "52.1.0"
903
+ version = "52.3.0"
904
904
  source = "registry+https://github.com/rust-lang/crates.io-index"
905
- checksum = "d12ee9fdc6cdb5898c7691bb994f0ba606c4acc93a2258d78bb9f26ff8158bb3"
905
+ checksum = "ea28305c211e3541c9cfcf06a23d0d8c7c824b4502ed1fdf0a6ff4ad24ee531c"
906
906
  dependencies = [
907
907
  "arrow",
908
908
  "arrow-schema",
@@ -956,9 +956,9 @@ dependencies = [
956
956
 
957
957
  [[package]]
958
958
  name = "datafusion-catalog"
959
- version = "52.1.0"
959
+ version = "52.3.0"
960
960
  source = "registry+https://github.com/rust-lang/crates.io-index"
961
- checksum = "462dc9ef45e5d688aeaae49a7e310587e81b6016b9d03bace5626ad0043e5a9e"
961
+ checksum = "78ab99b6df5f60a6ddbc515e4c05caee1192d395cf3cb67ce5d1c17e3c9b9b74"
962
962
  dependencies = [
963
963
  "arrow",
964
964
  "async-trait",
@@ -981,9 +981,9 @@ dependencies = [
981
981
 
982
982
  [[package]]
983
983
  name = "datafusion-catalog-listing"
984
- version = "52.1.0"
984
+ version = "52.3.0"
985
985
  source = "registry+https://github.com/rust-lang/crates.io-index"
986
- checksum = "1b96dbf1d728fc321817b744eb5080cdd75312faa6980b338817f68f3caa4208"
986
+ checksum = "77ae3d14912c0d779ada98d30dc60f3244f3c26c2446b87394629ea5c076a31c"
987
987
  dependencies = [
988
988
  "arrow",
989
989
  "async-trait",
@@ -1004,9 +1004,9 @@ dependencies = [
1004
1004
 
1005
1005
  [[package]]
1006
1006
  name = "datafusion-common"
1007
- version = "52.1.0"
1007
+ version = "52.3.0"
1008
1008
  source = "registry+https://github.com/rust-lang/crates.io-index"
1009
- checksum = "3237a6ff0d2149af4631290074289cae548c9863c885d821315d54c6673a074a"
1009
+ checksum = "ea2df29b9592a5d55b8238eaf67d2f21963d5a08cd1a8b7670134405206caabd"
1010
1010
  dependencies = [
1011
1011
  "ahash",
1012
1012
  "apache-avro",
@@ -1029,9 +1029,9 @@ dependencies = [
1029
1029
 
1030
1030
  [[package]]
1031
1031
  name = "datafusion-common-runtime"
1032
- version = "52.1.0"
1032
+ version = "52.3.0"
1033
1033
  source = "registry+https://github.com/rust-lang/crates.io-index"
1034
- checksum = "70b5e34026af55a1bfccb1ef0a763cf1f64e77c696ffcf5a128a278c31236528"
1034
+ checksum = "42639baa0049d5fffd7e283504b9b5e7b9b2e7a2dea476eed60ab0d40d999b85"
1035
1035
  dependencies = [
1036
1036
  "futures",
1037
1037
  "log",
@@ -1040,9 +1040,9 @@ dependencies = [
1040
1040
 
1041
1041
  [[package]]
1042
1042
  name = "datafusion-datasource"
1043
- version = "52.1.0"
1043
+ version = "52.3.0"
1044
1044
  source = "registry+https://github.com/rust-lang/crates.io-index"
1045
- checksum = "1b2a6be734cc3785e18bbf2a7f2b22537f6b9fb960d79617775a51568c281842"
1045
+ checksum = "25951b617bb22a9619e1520450590cb2004bfcad10bcb396b961f4a1a10dcec5"
1046
1046
  dependencies = [
1047
1047
  "arrow",
1048
1048
  "async-compression",
@@ -1075,9 +1075,9 @@ dependencies = [
1075
1075
 
1076
1076
  [[package]]
1077
1077
  name = "datafusion-datasource-arrow"
1078
- version = "52.1.0"
1078
+ version = "52.3.0"
1079
1079
  source = "registry+https://github.com/rust-lang/crates.io-index"
1080
- checksum = "1739b9b07c9236389e09c74f770e88aff7055250774e9def7d3f4f56b3dcc7be"
1080
+ checksum = "dc0b28226960ba99c50d78ac6f736ebe09eb5cb3bb9bb58194266278000ca41f"
1081
1081
  dependencies = [
1082
1082
  "arrow",
1083
1083
  "arrow-ipc",
@@ -1099,9 +1099,9 @@ dependencies = [
1099
1099
 
1100
1100
  [[package]]
1101
1101
  name = "datafusion-datasource-avro"
1102
- version = "52.1.0"
1102
+ version = "52.3.0"
1103
1103
  source = "registry+https://github.com/rust-lang/crates.io-index"
1104
- checksum = "828088c2fb681cc0e06fb42f541f76c82a0c10278f9fd6334e22c8d1e3574ee7"
1104
+ checksum = "18de2e914c2c9ed4b31a4920940b181b0957bc164eec4fc04c294533219bf0a7"
1105
1105
  dependencies = [
1106
1106
  "apache-avro",
1107
1107
  "arrow",
@@ -1119,9 +1119,9 @@ dependencies = [
1119
1119
 
1120
1120
  [[package]]
1121
1121
  name = "datafusion-datasource-csv"
1122
- version = "52.1.0"
1122
+ version = "52.3.0"
1123
1123
  source = "registry+https://github.com/rust-lang/crates.io-index"
1124
- checksum = "61c73bc54b518bbba7c7650299d07d58730293cfba4356f6f428cc94c20b7600"
1124
+ checksum = "f538b57b052a678b1ce860181c65d3ace5a8486312dc50b41c01dd585a773a51"
1125
1125
  dependencies = [
1126
1126
  "arrow",
1127
1127
  "async-trait",
@@ -1142,9 +1142,9 @@ dependencies = [
1142
1142
 
1143
1143
  [[package]]
1144
1144
  name = "datafusion-datasource-json"
1145
- version = "52.1.0"
1145
+ version = "52.3.0"
1146
1146
  source = "registry+https://github.com/rust-lang/crates.io-index"
1147
- checksum = "37812c8494c698c4d889374ecfabbff780f1f26d9ec095dd1bddfc2a8ca12559"
1147
+ checksum = "89fbc1d32b1b03c9734e27c0c5f041232b68621c8455f22769838634750a196c"
1148
1148
  dependencies = [
1149
1149
  "arrow",
1150
1150
  "async-trait",
@@ -1164,9 +1164,9 @@ dependencies = [
1164
1164
 
1165
1165
  [[package]]
1166
1166
  name = "datafusion-datasource-parquet"
1167
- version = "52.1.0"
1167
+ version = "52.3.0"
1168
1168
  source = "registry+https://github.com/rust-lang/crates.io-index"
1169
- checksum = "2210937ecd9f0e824c397e73f4b5385c97cd1aff43ab2b5836fcfd2d321523fb"
1169
+ checksum = "203271d31fe5613a5943181db70ec98162121d1de94a9a300d5e5f19f9500a32"
1170
1170
  dependencies = [
1171
1171
  "arrow",
1172
1172
  "async-trait",
@@ -1194,15 +1194,15 @@ dependencies = [
1194
1194
 
1195
1195
  [[package]]
1196
1196
  name = "datafusion-doc"
1197
- version = "52.1.0"
1197
+ version = "52.3.0"
1198
1198
  source = "registry+https://github.com/rust-lang/crates.io-index"
1199
- checksum = "2c825f969126bc2ef6a6a02d94b3c07abff871acf4d6dd759ce1255edb7923ce"
1199
+ checksum = "5b6450dc702b3d39e8ced54c3356abb453bd2f3cea86d90d555a4b92f7a38462"
1200
1200
 
1201
1201
  [[package]]
1202
1202
  name = "datafusion-execution"
1203
- version = "52.1.0"
1203
+ version = "52.3.0"
1204
1204
  source = "registry+https://github.com/rust-lang/crates.io-index"
1205
- checksum = "fa03ef05a2c2f90dd6c743e3e111078e322f4b395d20d4b4d431a245d79521ae"
1205
+ checksum = "e66a02fa601de49da5181dbdcf904a18b16a184db2b31f5e5534552ea2d5e660"
1206
1206
  dependencies = [
1207
1207
  "arrow",
1208
1208
  "async-trait",
@@ -1221,9 +1221,9 @@ dependencies = [
1221
1221
 
1222
1222
  [[package]]
1223
1223
  name = "datafusion-expr"
1224
- version = "52.1.0"
1224
+ version = "52.3.0"
1225
1225
  source = "registry+https://github.com/rust-lang/crates.io-index"
1226
- checksum = "ef33934c1f98ee695cc51192cc5f9ed3a8febee84fdbcd9131bf9d3a9a78276f"
1226
+ checksum = "cdf59a9b308a1a07dc2eb2f85e6366bc0226dc390b40f3aa0a72d79f1cfe2465"
1227
1227
  dependencies = [
1228
1228
  "arrow",
1229
1229
  "async-trait",
@@ -1244,9 +1244,9 @@ dependencies = [
1244
1244
 
1245
1245
  [[package]]
1246
1246
  name = "datafusion-expr-common"
1247
- version = "52.1.0"
1247
+ version = "52.3.0"
1248
1248
  source = "registry+https://github.com/rust-lang/crates.io-index"
1249
- checksum = "000c98206e3dd47d2939a94b6c67af4bfa6732dd668ac4fafdbde408fd9134ea"
1249
+ checksum = "bd99eac4c6538c708638db43e7a3bd88e0e57955ddb722d420fb9a6d38dfc28f"
1250
1250
  dependencies = [
1251
1251
  "arrow",
1252
1252
  "datafusion-common",
@@ -1257,9 +1257,9 @@ dependencies = [
1257
1257
 
1258
1258
  [[package]]
1259
1259
  name = "datafusion-ffi"
1260
- version = "52.1.0"
1260
+ version = "52.3.0"
1261
1261
  source = "registry+https://github.com/rust-lang/crates.io-index"
1262
- checksum = "30f57f7f63a25a0b78b3f2a5e18c0ecbd54851b64064ac0d5a9eb05efd5586d2"
1262
+ checksum = "f3b7b2b314f996ff30a2c695d74ec8cf9299305ca774269b56caed08652be7b5"
1263
1263
  dependencies = [
1264
1264
  "abi_stable",
1265
1265
  "arrow",
@@ -1287,9 +1287,9 @@ dependencies = [
1287
1287
 
1288
1288
  [[package]]
1289
1289
  name = "datafusion-functions"
1290
- version = "52.1.0"
1290
+ version = "52.3.0"
1291
1291
  source = "registry+https://github.com/rust-lang/crates.io-index"
1292
- checksum = "379b01418ab95ca947014066248c22139fe9af9289354de10b445bd000d5d276"
1292
+ checksum = "11aa2c492ac046397b36d57c62a72982aad306495bbcbcdbcabd424d4a2fe245"
1293
1293
  dependencies = [
1294
1294
  "arrow",
1295
1295
  "arrow-buffer",
@@ -1318,9 +1318,9 @@ dependencies = [
1318
1318
 
1319
1319
  [[package]]
1320
1320
  name = "datafusion-functions-aggregate"
1321
- version = "52.1.0"
1321
+ version = "52.3.0"
1322
1322
  source = "registry+https://github.com/rust-lang/crates.io-index"
1323
- checksum = "fd00d5454ba4c3f8ebbd04bd6a6a9dc7ced7c56d883f70f2076c188be8459e4c"
1323
+ checksum = "325a00081898945d48d6194d9ca26120e523c993be3bb7c084061a5a2a72e787"
1324
1324
  dependencies = [
1325
1325
  "ahash",
1326
1326
  "arrow",
@@ -1339,9 +1339,9 @@ dependencies = [
1339
1339
 
1340
1340
  [[package]]
1341
1341
  name = "datafusion-functions-aggregate-common"
1342
- version = "52.1.0"
1342
+ version = "52.3.0"
1343
1343
  source = "registry+https://github.com/rust-lang/crates.io-index"
1344
- checksum = "aec06b380729a87210a4e11f555ec2d729a328142253f8d557b87593622ecc9f"
1344
+ checksum = "809bbcb1e0dbec5d0ce30d493d135aea7564f1ba4550395f7f94321223df2dae"
1345
1345
  dependencies = [
1346
1346
  "ahash",
1347
1347
  "arrow",
@@ -1352,9 +1352,9 @@ dependencies = [
1352
1352
 
1353
1353
  [[package]]
1354
1354
  name = "datafusion-functions-nested"
1355
- version = "52.1.0"
1355
+ version = "52.3.0"
1356
1356
  source = "registry+https://github.com/rust-lang/crates.io-index"
1357
- checksum = "904f48d45e0f1eb7d0eb5c0f80f2b5c6046a85454364a6b16a2e0b46f62e7dff"
1357
+ checksum = "29ebaa5d7024ef45973e0a7db1e9aeaa647936496f4d4061c0448f23d77d6320"
1358
1358
  dependencies = [
1359
1359
  "arrow",
1360
1360
  "arrow-ord",
@@ -1375,9 +1375,9 @@ dependencies = [
1375
1375
 
1376
1376
  [[package]]
1377
1377
  name = "datafusion-functions-table"
1378
- version = "52.1.0"
1378
+ version = "52.3.0"
1379
1379
  source = "registry+https://github.com/rust-lang/crates.io-index"
1380
- checksum = "e9a0d20e2b887e11bee24f7734d780a2588b925796ac741c3118dd06d5aa77f0"
1380
+ checksum = "60eab6f39df9ee49a2c7fa38eddc01fa0086ee31b29c7d19f38e72f479609752"
1381
1381
  dependencies = [
1382
1382
  "arrow",
1383
1383
  "async-trait",
@@ -1391,9 +1391,9 @@ dependencies = [
1391
1391
 
1392
1392
  [[package]]
1393
1393
  name = "datafusion-functions-window"
1394
- version = "52.1.0"
1394
+ version = "52.3.0"
1395
1395
  source = "registry+https://github.com/rust-lang/crates.io-index"
1396
- checksum = "d3414b0a07e39b6979fe3a69c7aa79a9f1369f1d5c8e52146e66058be1b285ee"
1396
+ checksum = "e00b2c15e342a90e65a846199c9e49293dd09fe1bcd63d8be2544604892f7eb8"
1397
1397
  dependencies = [
1398
1398
  "arrow",
1399
1399
  "datafusion-common",
@@ -1409,9 +1409,9 @@ dependencies = [
1409
1409
 
1410
1410
  [[package]]
1411
1411
  name = "datafusion-functions-window-common"
1412
- version = "52.1.0"
1412
+ version = "52.3.0"
1413
1413
  source = "registry+https://github.com/rust-lang/crates.io-index"
1414
- checksum = "5bf2feae63cd4754e31add64ce75cae07d015bce4bb41cd09872f93add32523a"
1414
+ checksum = "493e2e1d1f4753dfc139a5213f1b5d0b97eea46a82d9bda3c7908aa96981b74b"
1415
1415
  dependencies = [
1416
1416
  "datafusion-common",
1417
1417
  "datafusion-physical-expr-common",
@@ -1419,9 +1419,9 @@ dependencies = [
1419
1419
 
1420
1420
  [[package]]
1421
1421
  name = "datafusion-macros"
1422
- version = "52.1.0"
1422
+ version = "52.3.0"
1423
1423
  source = "registry+https://github.com/rust-lang/crates.io-index"
1424
- checksum = "c4fe888aeb6a095c4bcbe8ac1874c4b9a4c7ffa2ba849db7922683ba20875aaf"
1424
+ checksum = "ba01c55ade8278a791b429f7bf5cb1de64de587a342d084b18245edfae7096e2"
1425
1425
  dependencies = [
1426
1426
  "datafusion-doc",
1427
1427
  "quote",
@@ -1430,9 +1430,9 @@ dependencies = [
1430
1430
 
1431
1431
  [[package]]
1432
1432
  name = "datafusion-optimizer"
1433
- version = "52.1.0"
1433
+ version = "52.3.0"
1434
1434
  source = "registry+https://github.com/rust-lang/crates.io-index"
1435
- checksum = "8a6527c063ae305c11be397a86d8193936f4b84d137fe40bd706dfc178cf733c"
1435
+ checksum = "a80c6dfbba6a2163a9507f6353ac78c69d8deb26232c9e419160e58ff7c3e047"
1436
1436
  dependencies = [
1437
1437
  "arrow",
1438
1438
  "chrono",
@@ -1450,9 +1450,9 @@ dependencies = [
1450
1450
 
1451
1451
  [[package]]
1452
1452
  name = "datafusion-physical-expr"
1453
- version = "52.1.0"
1453
+ version = "52.3.0"
1454
1454
  source = "registry+https://github.com/rust-lang/crates.io-index"
1455
- checksum = "0bb028323dd4efd049dd8a78d78fe81b2b969447b39c51424167f973ac5811d9"
1455
+ checksum = "5d3a86264bb9163e7360b6622e789bc7fcbb43672e78a8493f0bc369a41a57c6"
1456
1456
  dependencies = [
1457
1457
  "ahash",
1458
1458
  "arrow",
@@ -1474,9 +1474,9 @@ dependencies = [
1474
1474
 
1475
1475
  [[package]]
1476
1476
  name = "datafusion-physical-expr-adapter"
1477
- version = "52.1.0"
1477
+ version = "52.3.0"
1478
1478
  source = "registry+https://github.com/rust-lang/crates.io-index"
1479
- checksum = "78fe0826aef7eab6b4b61533d811234a7a9e5e458331ebbf94152a51fc8ab433"
1479
+ checksum = "3f5e00e524ac33500be6c5eeac940bd3f6b984ba9b7df0cd5f6c34a8a2cc4d6b"
1480
1480
  dependencies = [
1481
1481
  "arrow",
1482
1482
  "datafusion-common",
@@ -1489,9 +1489,9 @@ dependencies = [
1489
1489
 
1490
1490
  [[package]]
1491
1491
  name = "datafusion-physical-expr-common"
1492
- version = "52.1.0"
1492
+ version = "52.3.0"
1493
1493
  source = "registry+https://github.com/rust-lang/crates.io-index"
1494
- checksum = "cfccd388620734c661bd8b7ca93c44cdd59fecc9b550eea416a78ffcbb29475f"
1494
+ checksum = "2ae769ea5d688b4e74e9be5cad6f9d9f295b540825355868a3ab942380dd97ce"
1495
1495
  dependencies = [
1496
1496
  "ahash",
1497
1497
  "arrow",
@@ -1506,9 +1506,9 @@ dependencies = [
1506
1506
 
1507
1507
  [[package]]
1508
1508
  name = "datafusion-physical-optimizer"
1509
- version = "52.1.0"
1509
+ version = "52.3.0"
1510
1510
  source = "registry+https://github.com/rust-lang/crates.io-index"
1511
- checksum = "bde5fa10e73259a03b705d5fddc136516814ab5f441b939525618a4070f5a059"
1511
+ checksum = "f3588753ab2b47b0e43cd823fe5e7944df6734dabd6dafb72e2cc1c2a22f1944"
1512
1512
  dependencies = [
1513
1513
  "arrow",
1514
1514
  "datafusion-common",
@@ -1525,9 +1525,9 @@ dependencies = [
1525
1525
 
1526
1526
  [[package]]
1527
1527
  name = "datafusion-physical-plan"
1528
- version = "52.1.0"
1528
+ version = "52.3.0"
1529
1529
  source = "registry+https://github.com/rust-lang/crates.io-index"
1530
- checksum = "0e1098760fb29127c24cc9ade3277051dc73c9ed0ac0131bd7bcd742e0ad7470"
1530
+ checksum = "79949cbb109c2a45c527bfe0d956b9f2916807c05d4d2e66f3fd0af827ac2b61"
1531
1531
  dependencies = [
1532
1532
  "ahash",
1533
1533
  "arrow",
@@ -1556,9 +1556,9 @@ dependencies = [
1556
1556
 
1557
1557
  [[package]]
1558
1558
  name = "datafusion-proto"
1559
- version = "52.1.0"
1559
+ version = "52.3.0"
1560
1560
  source = "registry+https://github.com/rust-lang/crates.io-index"
1561
- checksum = "0cf75daf56aa6b1c6867cc33ff0fb035d517d6d06737fd355a3e1ef67cba6e7a"
1561
+ checksum = "51eb50848366adf7ff2734e767442916bb45b7e739d5edbf33e9e4c47c5fa797"
1562
1562
  dependencies = [
1563
1563
  "arrow",
1564
1564
  "chrono",
@@ -1583,9 +1583,9 @@ dependencies = [
1583
1583
 
1584
1584
  [[package]]
1585
1585
  name = "datafusion-proto-common"
1586
- version = "52.1.0"
1586
+ version = "52.3.0"
1587
1587
  source = "registry+https://github.com/rust-lang/crates.io-index"
1588
- checksum = "12a0cb3cce232a3de0d14ef44b58a6537aeb1362cfb6cf4d808691ddbb918956"
1588
+ checksum = "b16bf2f2a9f99c48b61537870736f0aa9500c4128407c9999261ff3e8a170523"
1589
1589
  dependencies = [
1590
1590
  "arrow",
1591
1591
  "datafusion-common",
@@ -1594,9 +1594,9 @@ dependencies = [
1594
1594
 
1595
1595
  [[package]]
1596
1596
  name = "datafusion-pruning"
1597
- version = "52.1.0"
1597
+ version = "52.3.0"
1598
1598
  source = "registry+https://github.com/rust-lang/crates.io-index"
1599
- checksum = "64d0fef4201777b52951edec086c21a5b246f3c82621569ddb4a26f488bc38a9"
1599
+ checksum = "6434e2ee8a39d04b95fed688ff34dc251af6e4a0c2e1714716b6e3846690d589"
1600
1600
  dependencies = [
1601
1601
  "arrow",
1602
1602
  "datafusion-common",
@@ -1611,7 +1611,7 @@ dependencies = [
1611
1611
 
1612
1612
  [[package]]
1613
1613
  name = "datafusion-python"
1614
- version = "52.0.0"
1614
+ version = "52.3.0"
1615
1615
  dependencies = [
1616
1616
  "arrow",
1617
1617
  "arrow-select",
@@ -1640,9 +1640,9 @@ dependencies = [
1640
1640
 
1641
1641
  [[package]]
1642
1642
  name = "datafusion-session"
1643
- version = "52.1.0"
1643
+ version = "52.3.0"
1644
1644
  source = "registry+https://github.com/rust-lang/crates.io-index"
1645
- checksum = "f71f1e39e8f2acbf1c63b0e93756c2e970a64729dab70ac789587d6237c4fde0"
1645
+ checksum = "c91efb8302b4877d499c37e9a71886b90236ab27d9cc42fd51112febf341abd6"
1646
1646
  dependencies = [
1647
1647
  "async-trait",
1648
1648
  "datafusion-common",
@@ -1654,9 +1654,9 @@ dependencies = [
1654
1654
 
1655
1655
  [[package]]
1656
1656
  name = "datafusion-sql"
1657
- version = "52.1.0"
1657
+ version = "52.3.0"
1658
1658
  source = "registry+https://github.com/rust-lang/crates.io-index"
1659
- checksum = "f44693cfcaeb7a9f12d71d1c576c3a6dc025a12cef209375fa2d16fb3b5670ee"
1659
+ checksum = "3f01eef7bcf4d00e87305b55f1b75792384e130fe0258bac02cd48378ae5ff87"
1660
1660
  dependencies = [
1661
1661
  "arrow",
1662
1662
  "bigdecimal",
@@ -1672,9 +1672,9 @@ dependencies = [
1672
1672
 
1673
1673
  [[package]]
1674
1674
  name = "datafusion-substrait"
1675
- version = "52.1.0"
1675
+ version = "52.3.0"
1676
1676
  source = "registry+https://github.com/rust-lang/crates.io-index"
1677
- checksum = "6042adacd0bd64e56c22f6a7f9ce0ce1793dd367c899d868179d029f110d9215"
1677
+ checksum = "fe00df31ca03a167d3e40054120930fe5fb689e66bc625b602fac7153b222aea"
1678
1678
  dependencies = [
1679
1679
  "async-recursion",
1680
1680
  "async-trait",
@@ -1688,7 +1688,6 @@ dependencies = [
1688
1688
  "substrait",
1689
1689
  "tokio",
1690
1690
  "url",
1691
- "uuid",
1692
1691
  ]
1693
1692
 
1694
1693
  [[package]]
@@ -17,7 +17,7 @@
17
17
 
18
18
  [package]
19
19
  name = "datafusion-python"
20
- version = "52.0.0"
20
+ version = "52.3.0"
21
21
  homepage = "https://datafusion.apache.org/python"
22
22
  repository = "https://github.com/apache/datafusion-python"
23
23
  authors = ["Apache DataFusion <dev@datafusion.apache.org>"]
@@ -57,10 +57,10 @@ pyo3-async-runtimes = { version = "0.26", features = ["tokio-runtime"] }
57
57
  pyo3-log = "0.13.2"
58
58
  arrow = { version = "57", features = ["pyarrow"] }
59
59
  arrow-select = { version = "57" }
60
- datafusion = { version = "52", features = ["avro", "unicode_expressions"] }
61
- datafusion-substrait = { version = "52", optional = true }
62
- datafusion-proto = { version = "52" }
63
- datafusion-ffi = { version = "52" }
60
+ datafusion = { version = "52.3.0", features = ["avro", "unicode_expressions"] }
61
+ datafusion-substrait = { version = "52.3.0", optional = true }
62
+ datafusion-proto = { version = "52.3.0" }
63
+ datafusion-ffi = { version = "52.3.0" }
64
64
  prost = "0.14.1" # keep in line with `datafusion-substrait`
65
65
  serde_json = "1"
66
66
  uuid = { version = "1.18", features = ["v4"] }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: datafusion
3
- Version: 52.0.0
3
+ Version: 52.3.0
4
4
  Classifier: Development Status :: 2 - Pre-Alpha
5
5
  Classifier: Intended Audience :: Developers
6
6
  Classifier: License :: OSI Approved :: Apache Software License
@@ -16,9 +16,9 @@
16
16
  // under the License.
17
17
 
18
18
  // Re-export Apache Arrow DataFusion dependencies
19
- pub use datafusion;
20
19
  pub use datafusion::{
21
- common as datafusion_common, logical_expr as datafusion_expr, optimizer, sql as datafusion_sql,
20
+ self, common as datafusion_common, logical_expr as datafusion_expr, optimizer,
21
+ sql as datafusion_sql,
22
22
  };
23
23
  #[cfg(feature = "substrait")]
24
24
  pub use datafusion_substrait;
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