File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed
datafusion/functions-table Expand file tree Collapse file tree 2 files changed +30
-1
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 Table 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 table functions that can be used in DataFusion queries.
25+
26+ [ df ] : https://crates.io/crates/datafusion
Original file line number Diff line number Diff line change @@ -274,13 +274,16 @@ Verify that the Cargo.toml in the tarball contains the correct version
274274(cd datafusion/physical-expr-common && cargo publish)
275275(cd datafusion/functions-aggregate-common && cargo publish)
276276(cd datafusion/functions-window-common && cargo publish)
277+ (cd datafusion/doc && cargo publish)
278+ (cd datafusion/macros && cargo publish)
277279(cd datafusion/expr && cargo publish)
278280(cd datafusion/execution && cargo publish)
279- (cd datafusion/physical-expr && cargo publish)
280281(cd datafusion/functions && cargo publish)
282+ (cd datafusion/physical-expr && cargo publish)
281283(cd datafusion/functions-aggregate && cargo publish)
282284(cd datafusion/functions-window && cargo publish)
283285(cd datafusion/functions-nested && cargo publish)
286+ (cd datafusion/functions-table && cargo publish)
284287(cd datafusion/sql && cargo publish)
285288(cd datafusion/optimizer && cargo publish)
286289(cd datafusion/common-runtime && cargo publish)
You can’t perform that action at this time.
0 commit comments