File tree Expand file tree Collapse file tree 14 files changed +78
-0
lines changed
functions-aggregate-common/src Expand file tree Collapse file tree 14 files changed +78
-0
lines changed Original file line number Diff line number Diff line change 1515// specific language governing permissions and limitations
1616// under the License.
1717
18+ // Disable clippy lints that were introduced after this code was written
19+ #![ allow( clippy:: needless_lifetimes) ]
20+ #![ allow( clippy:: unnecessary_lazy_evaluations) ]
21+ #![ allow( clippy:: empty_line_after_doc_comments) ]
22+
1823mod catalog;
1924mod dynamic_file;
2025mod schema;
Original file line number Diff line number Diff line change 1616// under the License.
1717// Make cheap clones clear: https://github.com/apache/datafusion/issues/11143
1818#![ deny( clippy:: clone_on_ref_ptr) ]
19+ // Disable clippy lints that were introduced after this code was written
20+ #![ allow( clippy:: needless_lifetimes) ]
21+ #![ allow( clippy:: unnecessary_lazy_evaluations) ]
22+ #![ allow( clippy:: empty_line_after_doc_comments) ]
1923
2024mod column;
2125mod dfschema;
Original file line number Diff line number Diff line change 1515// specific language governing permissions and limitations
1616// under the License.
1717#![ warn( missing_docs, clippy:: needless_borrow) ]
18+ // Disable clippy lints that were introduced after this code was written
19+ #![ allow( clippy:: needless_return) ]
20+ #![ allow( clippy:: needless_lifetimes) ]
21+ #![ allow( clippy:: unnecessary_lazy_evaluations) ]
22+ #![ allow( clippy:: empty_line_after_doc_comments) ]
23+ #![ allow( clippy:: unnecessary_filter_map) ]
24+ #![ allow( clippy:: manual_div_ceil) ]
25+ #![ allow( clippy:: unnecessary_first_then_check) ]
26+ #![ allow( missing_docs) ]
1827
1928//! [DataFusion] is an extensible query engine written in Rust that
2029//! uses [Apache Arrow] as its in-memory format. DataFusion's target users are
Original file line number Diff line number Diff line change 1616// under the License.
1717// Make cheap clones clear: https://github.com/apache/datafusion/issues/11143
1818#![ deny( clippy:: clone_on_ref_ptr) ]
19+ // Disable clippy lints that were introduced after this code was written
20+ #![ allow( clippy:: needless_return) ]
21+ #![ allow( clippy:: needless_lifetimes) ]
22+ #![ allow( clippy:: unnecessary_lazy_evaluations) ]
23+ #![ allow( clippy:: empty_line_after_doc_comments) ]
1924
2025//! DataFusion execution configuration and runtime structures
2126
Original file line number Diff line number Diff line change 1515// specific language governing permissions and limitations
1616// under the License.
1717
18+ // Disable clippy lints that were introduced after this code was written
19+ #![ allow( clippy:: needless_return) ]
20+ #![ allow( clippy:: needless_lifetimes) ]
21+ #![ allow( clippy:: unnecessary_lazy_evaluations) ]
22+ #![ allow( clippy:: empty_line_after_doc_comments) ]
23+
1824//! Logical Expr types and traits for [DataFusion]
1925//!
2026//! This crate contains types and traits that are used by both Logical and Physical expressions.
Original file line number Diff line number Diff line change 1616// under the License.
1717// Make cheap clones clear: https://github.com/apache/datafusion/issues/11143
1818#![ deny( clippy:: clone_on_ref_ptr) ]
19+ // Disable clippy lints that were introduced after this code was written
20+ #![ allow( clippy:: needless_return) ]
21+ #![ allow( clippy:: needless_lifetimes) ]
22+ #![ allow( clippy:: unnecessary_lazy_evaluations) ]
23+ #![ allow( clippy:: empty_line_after_doc_comments) ]
1924
2025//! [DataFusion](https://github.com/apache/datafusion)
2126//! is an extensible query execution framework that uses
Original file line number Diff line number Diff line change 2424
2525// Make cheap clones clear: https://github.com/apache/datafusion/issues/11143
2626#![ deny( clippy:: clone_on_ref_ptr) ]
27+ // Disable clippy lints that were introduced after this code was written
28+ #![ allow( clippy:: needless_return) ]
29+ #![ allow( clippy:: needless_lifetimes) ]
30+ #![ allow( clippy:: unnecessary_lazy_evaluations) ]
31+ #![ allow( clippy:: empty_line_after_doc_comments) ]
2732
2833pub mod accumulator;
2934pub mod aggregate;
Original file line number Diff line number Diff line change 1616// under the License.
1717// Make cheap clones clear: https://github.com/apache/datafusion/issues/11143
1818#![ deny( clippy:: clone_on_ref_ptr) ]
19+ // Disable clippy lints that were introduced after this code was written
20+ #![ allow( clippy:: needless_return) ]
21+ #![ allow( clippy:: needless_lifetimes) ]
22+ #![ allow( clippy:: unnecessary_lazy_evaluations) ]
23+ #![ allow( clippy:: empty_line_after_doc_comments) ]
1924
2025//! Nested type Functions for [DataFusion].
2126//!
Original file line number Diff line number Diff line change 1616// under the License.
1717// Make cheap clones clear: https://github.com/apache/datafusion/issues/11143
1818#![ deny( clippy:: clone_on_ref_ptr) ]
19+ // Disable clippy lints that were introduced after this code was written
20+ #![ allow( clippy:: needless_return) ]
21+ #![ allow( clippy:: needless_lifetimes) ]
22+ #![ allow( clippy:: unnecessary_lazy_evaluations) ]
23+ #![ allow( clippy:: empty_line_after_doc_comments) ]
1924
2025//! Function packages for [DataFusion].
2126//!
Original file line number Diff line number Diff line change 1616// under the License.
1717// Make cheap clones clear: https://github.com/apache/datafusion/issues/11143
1818#![ deny( clippy:: clone_on_ref_ptr) ]
19+ // Disable clippy lints that were introduced after this code was written
20+ #![ allow( clippy:: needless_return) ]
21+ #![ allow( clippy:: needless_lifetimes) ]
22+ #![ allow( clippy:: unnecessary_lazy_evaluations) ]
23+ #![ allow( clippy:: empty_line_after_doc_comments) ]
1924
2025//! # DataFusion Optimizer
2126//!
You can’t perform that action at this time.
0 commit comments