Skip to content

Commit

Permalink
Merge remote-tracking branch 'apache/main' into alamb/prune_pages_sta…
Browse files Browse the repository at this point in the history
…tistics_converter
  • Loading branch information
alamb committed Jul 17, 2024
2 parents 79ecd80 + adcfd85 commit 3024a8a
Show file tree
Hide file tree
Showing 43 changed files with 666 additions and 257 deletions.
4 changes: 2 additions & 2 deletions datafusion/common/src/column.rs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ impl Column {
for using_col in using_columns {
let all_matched = columns.iter().all(|f| using_col.contains(f));
// All matched fields belong to the same using column set, in orther words
// the same join clause. We simply pick the qualifer from the first match.
// the same join clause. We simply pick the qualifier from the first match.
if all_matched {
return Ok(columns[0].clone());
}
Expand Down Expand Up @@ -303,7 +303,7 @@ impl Column {
for using_col in using_columns {
let all_matched = columns.iter().all(|c| using_col.contains(c));
// All matched fields belong to the same using column set, in orther words
// the same join clause. We simply pick the qualifer from the first match.
// the same join clause. We simply pick the qualifier from the first match.
if all_matched {
return Ok(columns[0].clone());
}
Expand Down
2 changes: 1 addition & 1 deletion datafusion/common/src/dfschema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1310,7 +1310,7 @@ mod tests {
])
}
#[test]
fn test_dfschema_to_schema_convertion() {
fn test_dfschema_to_schema_conversion() {
let mut a_metadata = HashMap::new();
a_metadata.insert("key".to_string(), "value".to_string());
let a_field = Field::new("a", DataType::Int64, false).with_metadata(a_metadata);
Expand Down
Loading

0 comments on commit 3024a8a

Please sign in to comment.