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.
- {datafusion-52.0.0 → datafusion-52.3.0}/Cargo.lock +73 -74
- {datafusion-52.0.0 → datafusion-52.3.0}/Cargo.toml +5 -5
- {datafusion-52.0.0 → datafusion-52.3.0}/PKG-INFO +1 -1
- {datafusion-52.0.0 → datafusion-52.3.0}/src/lib.rs +2 -2
- {datafusion-52.0.0 → datafusion-52.3.0}/LICENSE.txt +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/README.md +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/build.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/pyproject.toml +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/__init__.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/catalog.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/col.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/common.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/context.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/dataframe.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/dataframe_formatter.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/expr.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/functions.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/html_formatter.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/input/__init__.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/input/base.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/input/location.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/io.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/object_store.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/options.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/plan.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/py.typed +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/record_batch.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/substrait.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/udf.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/unparser.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/python/datafusion/user_defined.py +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/array.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/catalog.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/common/data_type.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/common/df_schema.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/common/function.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/common/schema.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/common.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/config.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/context.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/dataframe.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/dataset.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/dataset_exec.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/errors.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/aggregate.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/aggregate_expr.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/alias.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/analyze.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/between.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/binary_expr.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/bool_expr.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/case.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/cast.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/column.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/conditional_expr.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/copy_to.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/create_catalog.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/create_catalog_schema.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/create_external_table.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/create_function.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/create_index.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/create_memory_table.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/create_view.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/describe_table.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/distinct.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/dml.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/drop_catalog_schema.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/drop_function.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/drop_table.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/drop_view.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/empty_relation.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/exists.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/explain.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/extension.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/filter.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/grouping_set.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/in_list.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/in_subquery.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/indexed_field.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/join.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/like.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/limit.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/literal.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/logical_node.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/placeholder.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/projection.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/recursive_query.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/repartition.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/scalar_subquery.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/scalar_variable.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/signature.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/sort.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/sort_expr.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/statement.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/subquery.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/subquery_alias.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/table_scan.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/union.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/unnest.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/unnest_expr.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/values.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr/window.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/expr.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/functions.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/options.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/physical_plan.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/pyarrow_filter_expression.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/pyarrow_util.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/record_batch.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/sql/exceptions.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/sql/logical.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/sql/util.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/sql.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/store.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/substrait.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/table.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/udaf.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/udf.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/udtf.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/udwf.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/unparser/dialect.rs +0 -0
- {datafusion-52.0.0 → datafusion-52.3.0}/src/unparser/mod.rs +0 -0
- {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.
|
|
903
|
+
version = "52.3.0"
|
|
904
904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
-
checksum = "
|
|
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.
|
|
959
|
+
version = "52.3.0"
|
|
960
960
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
-
checksum = "
|
|
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.
|
|
984
|
+
version = "52.3.0"
|
|
985
985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
-
checksum = "
|
|
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.
|
|
1007
|
+
version = "52.3.0"
|
|
1008
1008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
-
checksum = "
|
|
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.
|
|
1032
|
+
version = "52.3.0"
|
|
1033
1033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
-
checksum = "
|
|
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.
|
|
1043
|
+
version = "52.3.0"
|
|
1044
1044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
-
checksum = "
|
|
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.
|
|
1078
|
+
version = "52.3.0"
|
|
1079
1079
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
-
checksum = "
|
|
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.
|
|
1102
|
+
version = "52.3.0"
|
|
1103
1103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
-
checksum = "
|
|
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.
|
|
1122
|
+
version = "52.3.0"
|
|
1123
1123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
-
checksum = "
|
|
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.
|
|
1145
|
+
version = "52.3.0"
|
|
1146
1146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
-
checksum = "
|
|
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.
|
|
1167
|
+
version = "52.3.0"
|
|
1168
1168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
-
checksum = "
|
|
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.
|
|
1197
|
+
version = "52.3.0"
|
|
1198
1198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
-
checksum = "
|
|
1199
|
+
checksum = "5b6450dc702b3d39e8ced54c3356abb453bd2f3cea86d90d555a4b92f7a38462"
|
|
1200
1200
|
|
|
1201
1201
|
[[package]]
|
|
1202
1202
|
name = "datafusion-execution"
|
|
1203
|
-
version = "52.
|
|
1203
|
+
version = "52.3.0"
|
|
1204
1204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
-
checksum = "
|
|
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.
|
|
1224
|
+
version = "52.3.0"
|
|
1225
1225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1226
|
-
checksum = "
|
|
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.
|
|
1247
|
+
version = "52.3.0"
|
|
1248
1248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
-
checksum = "
|
|
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.
|
|
1260
|
+
version = "52.3.0"
|
|
1261
1261
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
-
checksum = "
|
|
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.
|
|
1290
|
+
version = "52.3.0"
|
|
1291
1291
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1292
|
-
checksum = "
|
|
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.
|
|
1321
|
+
version = "52.3.0"
|
|
1322
1322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1323
|
-
checksum = "
|
|
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.
|
|
1342
|
+
version = "52.3.0"
|
|
1343
1343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1344
|
-
checksum = "
|
|
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.
|
|
1355
|
+
version = "52.3.0"
|
|
1356
1356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
-
checksum = "
|
|
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.
|
|
1378
|
+
version = "52.3.0"
|
|
1379
1379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
-
checksum = "
|
|
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.
|
|
1394
|
+
version = "52.3.0"
|
|
1395
1395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
-
checksum = "
|
|
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.
|
|
1412
|
+
version = "52.3.0"
|
|
1413
1413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
-
checksum = "
|
|
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.
|
|
1422
|
+
version = "52.3.0"
|
|
1423
1423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1424
|
-
checksum = "
|
|
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.
|
|
1433
|
+
version = "52.3.0"
|
|
1434
1434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
-
checksum = "
|
|
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.
|
|
1453
|
+
version = "52.3.0"
|
|
1454
1454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
-
checksum = "
|
|
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.
|
|
1477
|
+
version = "52.3.0"
|
|
1478
1478
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
-
checksum = "
|
|
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.
|
|
1492
|
+
version = "52.3.0"
|
|
1493
1493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1494
|
-
checksum = "
|
|
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.
|
|
1509
|
+
version = "52.3.0"
|
|
1510
1510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
-
checksum = "
|
|
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.
|
|
1528
|
+
version = "52.3.0"
|
|
1529
1529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1530
|
-
checksum = "
|
|
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.
|
|
1559
|
+
version = "52.3.0"
|
|
1560
1560
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
-
checksum = "
|
|
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.
|
|
1586
|
+
version = "52.3.0"
|
|
1587
1587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
-
checksum = "
|
|
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.
|
|
1597
|
+
version = "52.3.0"
|
|
1598
1598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
-
checksum = "
|
|
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.
|
|
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.
|
|
1643
|
+
version = "52.3.0"
|
|
1644
1644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
-
checksum = "
|
|
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.
|
|
1657
|
+
version = "52.3.0"
|
|
1658
1658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
-
checksum = "
|
|
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.
|
|
1675
|
+
version = "52.3.0"
|
|
1676
1676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1677
|
-
checksum = "
|
|
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.
|
|
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"] }
|
|
@@ -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,
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|