File tree Expand file tree Collapse file tree 3 files changed +59
-3
lines changed
functions-aggregate-common Expand file tree Collapse file tree 3 files changed +59
-3
lines changed Original file line number Diff line number Diff line change 1+ <!-- -
2+ Licensed to the Apache Software Foundation (ASF) under one
3+ or more contributor license agreements. See the NOTICE file
4+ distributed with this work for additional information
5+ regarding copyright ownership. The ASF licenses this file
6+ to you under the Apache License, Version 2.0 (the
7+ "License"); you may not use this file except in compliance
8+ with the License. You may obtain a copy of the License at
9+
10+ http://www.apache.org/licenses/LICENSE-2.0
11+
12+ Unless required by applicable law or agreed to in writing,
13+ software distributed under the License is distributed on an
14+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+ KIND, either express or implied. See the License for the
16+ specific language governing permissions and limitations
17+ under the License.
18+ -->
19+
20+ # DataFusion Logical Plan and Expressions
21+
22+ [ DataFusion] [ df ] is an extensible query execution framework, written in Rust, that uses Apache Arrow as its in-memory format.
23+
24+ This crate is a submodule of DataFusion that provides data types and utilities for logical plans and expressions.
25+
26+ [ df ] : https://crates.io/crates/datafusion
Original file line number Diff line number Diff line change 1+ <!-- -
2+ Licensed to the Apache Software Foundation (ASF) under one
3+ or more contributor license agreements. See the NOTICE file
4+ distributed with this work for additional information
5+ regarding copyright ownership. The ASF licenses this file
6+ to you under the Apache License, Version 2.0 (the
7+ "License"); you may not use this file except in compliance
8+ with the License. You may obtain a copy of the License at
9+
10+ http://www.apache.org/licenses/LICENSE-2.0
11+
12+ Unless required by applicable law or agreed to in writing,
13+ software distributed under the License is distributed on an
14+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+ KIND, either express or implied. See the License for the
16+ specific language governing permissions and limitations
17+ under the License.
18+ -->
19+
20+ # DataFusion Aggregate Function Library
21+
22+ [ DataFusion] [ df ] is an extensible query execution framework, written in Rust, that uses Apache Arrow as its in-memory format.
23+
24+ This crate contains packages of function that can be used to customize the
25+ functionality of DataFusion.
26+
27+ [ df ] : https://crates.io/crates/datafusion
Original file line number Diff line number Diff line change @@ -260,18 +260,21 @@ Verify that the Cargo.toml in the tarball contains the correct version
260260
261261``` shell
262262(cd datafusion/common && cargo publish)
263+ (cd datafusion/expr-common && cargo publish)
264+ (cd datafusion/physical-expr-common && cargo publish)
265+ (cd datafusion/functions-aggregate-common && cargo publish)
263266(cd datafusion/expr && cargo publish)
264267(cd datafusion/execution && cargo publish)
265- (cd datafusion/physical-expr-common && cargo publish)
266- (cd datafusion/functions-aggregate && cargo publish)
267268(cd datafusion/physical-expr && cargo publish)
269+ (cd datafusion/functions-aggregate && cargo publish)
268270(cd datafusion/functions && cargo publish)
269271(cd datafusion/functions-nested && cargo publish)
272+ (cd datafusion/functions-window && cargo publish)
270273(cd datafusion/sql && cargo publish)
271274(cd datafusion/optimizer && cargo publish)
272275(cd datafusion/common-runtime && cargo publish)
273- (cd datafusion/catalog && cargo publish)
274276(cd datafusion/physical-plan && cargo publish)
277+ (cd datafusion/catalog && cargo publish)
275278(cd datafusion/physical-optimizer && cargo publish)
276279(cd datafusion/core && cargo publish)
277280(cd datafusion/proto-common && cargo publish)
You can’t perform that action at this time.
0 commit comments