This is an automated email from the ASF dual-hosted git repository.
agrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/master by this push:
new f2313ae7b [minor] fix bench aggregate_query_sql meta (#3218)
f2313ae7b is described below
commit f2313ae7bbc2fc4e4454c63e2ef60f5474b81cc1
Author: Yang Jiang <[email protected]>
AuthorDate: Mon Aug 22 22:43:32 2022 +0800
[minor] fix bench aggregate_query_sql meta (#3218)
---
datafusion/core/benches/data_utils/mod.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/datafusion/core/benches/data_utils/mod.rs
b/datafusion/core/benches/data_utils/mod.rs
index 71952b4c6..66603fd42 100644
--- a/datafusion/core/benches/data_utils/mod.rs
+++ b/datafusion/core/benches/data_utils/mod.rs
@@ -58,11 +58,11 @@ pub fn create_schema() -> Schema {
Schema::new(vec![
Field::new("utf8", DataType::Utf8, false),
Field::new("f32", DataType::Float32, false),
- Field::new("f64", DataType::Float64, false),
+ Field::new("f64", DataType::Float64, true),
// This field will contain integers randomly selected from a large
// range of values, i.e. [0, u64::MAX], such that there are none (or
// very few) repeated values.
- Field::new("u64_wide", DataType::UInt64, false),
+ Field::new("u64_wide", DataType::UInt64, true),
// This field will contain integers randomly selected from a narrow
// range of values such that there are a few distinct values, but they
// are repeated often.