Skip to content

Commit

Permalink
Set collect_stats to false
Browse files Browse the repository at this point in the history
  • Loading branch information
trueleo committed Mar 23, 2023
1 parent 234eb6e commit aa1c997
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server/src/query/table_provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ fn local_parquet_table(parquet_files: &[PathBuf], schema: &SchemaRef) -> Option<
file_sort_order: None,
infinite_source: false,
table_partition_cols: vec![],
collect_stat: true,
collect_stat: false,
target_partitions: 1,
};

Expand Down
2 changes: 1 addition & 1 deletion server/src/storage/localfs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ impl ObjectStorage for LocalFS {
infinite_source: false,
format: Arc::new(file_format),
table_partition_cols: vec![],
collect_stat: true,
collect_stat: false,
target_partitions: 1,
};

Expand Down
2 changes: 1 addition & 1 deletion server/src/storage/s3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ impl ObjectStorage for S3 {
infinite_source: false,
format: Arc::new(file_format),
table_partition_cols: vec![],
collect_stat: true,
collect_stat: false,
target_partitions: 1,
};

Expand Down

0 comments on commit aa1c997

Please sign in to comment.