Skip to content

Commit bbc9c6c

Browse files
authored
Fix test output due to logical merge conflict (apache#694)
1 parent 18c581c commit bbc9c6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/tests/sql.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1705,7 +1705,7 @@ async fn equijoin_and_unsupported_condition() -> Result<()> {
17051705
"SELECT t1_id, t1_name, t2_name FROM t1 LEFT JOIN t2 ON t1_id = t2_id AND t2_name >= 'y' ORDER BY t1_id";
17061706
let res = ctx.create_logical_plan(sql);
17071707
assert!(res.is_err());
1708-
assert_eq!(format!("{}", res.unwrap_err()), "This feature is not implemented: Unsupported expressions in Left JOIN: [#t2.t2_name GtEq Utf8(\"y\")]");
1708+
assert_eq!(format!("{}", res.unwrap_err()), "This feature is not implemented: Unsupported expressions in Left JOIN: [#t2_name GtEq Utf8(\"y\")]");
17091709
Ok(())
17101710
}
17111711

0 commit comments

Comments
 (0)