Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinGe00 committed Jul 18, 2024
1 parent 0dc5ce1 commit 26304ea
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -999,8 +999,8 @@ public void testSqlSelectAliasAppenderTransformerWithoutTableAliasPrefix() {
public void testIntCastToBigIntDuringComparison() {
// We're testing that a comparison between INT and BIGINT sees a cast on the more restrictive type to the
// less restrictive type and not the other way around. In other words, the INT is cast to BIGINT.
RelNode relNode = TestUtils.getHiveToRelConverter().convertSql(
"SELECT CASE WHEN int_col = bigint_col THEN 'abc' ELSE 'def' END FROM test.tableInt");
RelNode relNode = TestUtils.getHiveToRelConverter()
.convertSql("SELECT CASE WHEN int_col = bigint_col THEN 'abc' ELSE 'def' END FROM test.tableInt");
RelToTrinoConverter relToTrinoConverter = TestUtils.getRelToTrinoConverter();
String expandedSql = relToTrinoConverter.convert(relNode);

Expand Down

0 comments on commit 26304ea

Please sign in to comment.