Skip to content

Commit 2744df8

Browse files
committed
Merge remote-tracking branch 'apache/main' into alamb/move_partition_evaluator
2 parents 526a7e8 + 9b419b1 commit 2744df8

29 files changed

Lines changed: 896 additions & 830 deletions

datafusion/core/tests/core_integration.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
/// Run all tests that are found in the `sql` directory
1919
mod sql;
2020

21+
/// Run all tests that are found in the `dataframe` directory
22+
mod dataframe;
23+
2124
#[cfg(test)]
2225
#[ctor::ctor]
2326
fn init() {
File renamed without changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18+
// Include tests in dataframe_functions
19+
mod dataframe_functions;
20+
1821
use arrow::datatypes::{DataType, Field, Schema};
1922
use arrow::util::pretty::pretty_format_batches;
2023
use arrow::{

datafusion/core/tests/fuzz.rs

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Licensed to the Apache Software Foundation (ASF) under one
2+
// or more contributor license agreements. See the NOTICE file
3+
// distributed with this work for additional information
4+
// regarding copyright ownership. The ASF licenses this file
5+
// to you under the Apache License, Version 2.0 (the
6+
// "License"); you may not use this file except in compliance
7+
// with the License. You may obtain a copy of the License at
8+
//
9+
// http://www.apache.org/licenses/LICENSE-2.0
10+
//
11+
// Unless required by applicable law or agreed to in writing,
12+
// software distributed under the License is distributed on an
13+
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
// KIND, either express or implied. See the License for the
15+
// specific language governing permissions and limitations
16+
// under the License.
17+
18+
/// Run all tests that are found in the `fuzz_cases` directory
19+
mod fuzz_cases;
20+
21+
#[cfg(test)]
22+
#[ctor::ctor]
23+
fn init() {
24+
// Enable RUST_LOG logging configuration for test
25+
let _ = env_logger::try_init();
26+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Licensed to the Apache Software Foundation (ASF) under one
2+
// or more contributor license agreements. See the NOTICE file
3+
// distributed with this work for additional information
4+
// regarding copyright ownership. The ASF licenses this file
5+
// to you under the Apache License, Version 2.0 (the
6+
// "License"); you may not use this file except in compliance
7+
// with the License. You may obtain a copy of the License at
8+
//
9+
// http://www.apache.org/licenses/LICENSE-2.0
10+
//
11+
// Unless required by applicable law or agreed to in writing,
12+
// software distributed under the License is distributed on an
13+
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
// KIND, either express or implied. See the License for the
15+
// specific language governing permissions and limitations
16+
// under the License.
17+
18+
mod aggregate_fuzz;
19+
mod join_fuzz;
20+
mod merge_fuzz;
21+
mod order_spill_fuzz;
22+
mod window_fuzz;
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)