Skip to content

Commit

Permalink
[]
Browse files Browse the repository at this point in the history
  • Loading branch information
liuqiyuan committed Jun 21, 2023
1 parent 70b5b46 commit 54e4e63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cases/integration_test/expression/test_condition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ cases:
sql: |
select col1,ifnull(col2 /0 ,100) as e3 from {0};
expect:
columns: ["col1 int", "e3 int"]
columns: ["col1 int", "e3 double"]
order: col1
rows:
- [1, 100]
Expand Down Expand Up @@ -327,7 +327,7 @@ cases:
sql: |
select col1,nvl(col2 /0 ,100) as e3 from {0};
expect:
columns: ["col1 int", "e3 int"]
columns: ["col1 int", "e3 double"]
order: col1
rows:
- [1, 100]
Expand Down

0 comments on commit 54e4e63

Please sign in to comment.