Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Igosuki committed Oct 10, 2021
1 parent b1536ab commit 0c38a83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion datafusion/src/physical_plan/expressions/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ mod case;
mod cast;
mod coercion;
mod column;
mod count
mod count;
mod cume_dist;
mod get_indexed_field;
mod in_list;
Expand Down
2 changes: 1 addition & 1 deletion datafusion/tests/sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5217,7 +5217,7 @@ async fn query_nested_get_indexed_field() -> Result<()> {
assert_eq!(expected, actual);
let sql = r#"SELECT some_dict["b"], some_dict["a"] FROM ints LIMIT 3"#;
let actual = execute(&mut ctx, sql).await;
let expected = vec![vec!["0"], vec!["1"]];
let expected = vec![vec!["0", "1"]];
assert_eq!(expected, actual);
Ok(())
}

0 comments on commit 0c38a83

Please sign in to comment.