You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
0: query result mismatch:
[SQL] with
t0 as (
select
train_id,
seat_count,
sum(seat_count) over (
partition by departure_station, arrival_station order by train_id
) ::int sum_sid
from
train
)
select
sum(case when n=1 then sum_sid+1 else 0 end::int),
sum(sum_sid),
sum(seat_count)
from
t0,(select 1 n union all select 2);
[Diff] (-expected|+actual)
- 261700 523200 210000
+ 236700 473200 210000
at tests/sqllogictests/suites/query/cte/basic_r_cte.test:265
The text was updated successfully, but these errors were encountered:
Summary
https://github.com/databendlabs/databend/actions/runs/12780164800/job/35626574682?pr=17262
The text was updated successfully, but these errors were encountered: