We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18c581c commit bbc9c6cCopy full SHA for bbc9c6c
datafusion/tests/sql.rs
@@ -1705,7 +1705,7 @@ async fn equijoin_and_unsupported_condition() -> Result<()> {
1705
"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";
1706
let res = ctx.create_logical_plan(sql);
1707
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\")]");
+ assert_eq!(format!("{}", res.unwrap_err()), "This feature is not implemented: Unsupported expressions in Left JOIN: [#t2_name GtEq Utf8(\"y\")]");
1709
Ok(())
1710
}
1711
0 commit comments