Skip to content

Commit

Permalink
fix cases issue
Browse files Browse the repository at this point in the history
  • Loading branch information
liuqiyuan committed Jan 30, 2024
1 parent 3f3b7ec commit 6d6743b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions cases/integration_test/expression/test_type.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -424,9 +424,9 @@ cases:
columns: ["id int32", "string_c1 string", "string_c2 string", "string_c3 string", "string_c4 string", "string_c5 string",
"string_c6 string", "string_c7 string", "string_c8 string", "string_c9 string", "string_c10 string"]
rows:
- [1, "1", "1", "1", "1.0", "1.0", "2020-05-22 10:43:40", "2020-05-22", "2020-05-22 10:43:40", "true", "1"]
- [2, "-1", "-1", "-1", "-1.0", "-1.0", "2020-05-22 10:43:40", "2020-05-22", "2020-05-22 10:43:40", "false", "-1"]
- [3, "-1", "-1", "-1", "-1.0", "-1.0", NULL, "2020-05-22", "2020-05-22 10:43:40", "false", ""]
- [1, "1", "1", "1", "1", "1.0", "2020-05-22 10:43:40", "2020-05-22", "2020-05-22 10:43:40", "true", "1"]
- [2, "-1", "-1", "-1", "-1", "-1.0", "2020-05-22 10:43:40", "2020-05-22", "2020-05-22 10:43:40", "false", "-1"]
- [3, "-1", "-1", "-1", "-1", "-1.0", NULL, "2020-05-22", "2020-05-22 10:43:40", "false", ""]
- id: 20
desc: cast as date
mode: offline-unsupport,disk-unsupport
Expand Down
2 changes: 1 addition & 1 deletion cases/integration_test/window/error_window.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ cases:
sql: |
SELECT id, c1, c4, count(c4) OVER w1 as w1_c4_count FROM {0} WINDOW w1 AS (PARTITION BY {0}.c8 ROWS BETWEEN 2 PRECEDING AND CURRENT ROW);
expect:
success: false
success: true
- id: 1
desc: no partition by
inputs:
Expand Down

0 comments on commit 6d6743b

Please sign in to comment.