Skip to content

Commit 210764f

Browse files
committed
add READMEs to new crates
1 parent 8e8bb89 commit 210764f

File tree

3 files changed

+59
-3
lines changed

3 files changed

+59
-3
lines changed

datafusion/expr-common/README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

dev/release/README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)