diff --git a/tests/sqllogictests/suites/mode/standalone/explain/window.test b/tests/sqllogictests/suites/mode/standalone/explain/window.test index d0a21b1c4e41..d548cb11d30d 100644 --- a/tests/sqllogictests/suites/mode/standalone/explain/window.test +++ b/tests/sqllogictests/suites/mode/standalone/explain/window.test @@ -189,7 +189,7 @@ Filter ├── filters: [t2.rank (#6) = 1, is_true(t2.k (#4) = 12)] ├── estimated rows: 0.00 └── Window - ├── output columns: [k (#4), v (#5), rank() OVER ( ORDER BY v DESC) (#6)] + ├── output columns: [k (#4), v (#5), rank() OVER (ORDER BY v DESC) (#6)] ├── aggregate function: [rank] ├── partition by: [] ├── order by: [v] @@ -270,7 +270,7 @@ query T explain select b, row_number() over (order by b) from tbpush where b > 3; ---- Window -├── output columns: [tbpush.b (#0), row_number() OVER ( ORDER BY b) (#1)] +├── output columns: [tbpush.b (#0), row_number() OVER (ORDER BY b) (#1)] ├── aggregate function: [row_number] ├── partition by: [] ├── order by: [b] @@ -324,11 +324,11 @@ query T explain select * from (select b, row_number() over (order by b) from tbpush) where b > 3; ---- Filter -├── output columns: [tbpush.b (#0), row_number() OVER ( ORDER BY b) (#1)] +├── output columns: [tbpush.b (#0), row_number() OVER (ORDER BY b) (#1)] ├── filters: [is_true(tbpush.b (#0) > 3)] ├── estimated rows: 0.00 └── Window - ├── output columns: [tbpush.b (#0), row_number() OVER ( ORDER BY b) (#1)] + ├── output columns: [tbpush.b (#0), row_number() OVER (ORDER BY b) (#1)] ├── aggregate function: [row_number] ├── partition by: [] ├── order by: [b] diff --git a/tests/sqllogictests/suites/query/window_function/window_ntile.test b/tests/sqllogictests/suites/query/window_function/window_ntile.test index 9ab9947a1153..45425f47194c 100644 --- a/tests/sqllogictests/suites/query/window_function/window_ntile.test +++ b/tests/sqllogictests/suites/query/window_function/window_ntile.test @@ -203,7 +203,7 @@ SELECT FROM ( SELECT - id, kind, ntile(10) OVER ( ORDER BY per ASC ) AS quantile + id, kind, ntile(10) OVER (ORDER BY per ASC ) AS quantile FROM (SELECT * FROM t) )