mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Avoid deadlock due to Log usage in 01568_window_functions_distributed
This commit is contained in:
parent
8703b7863d
commit
e5cff95cc8
@ -10,7 +10,7 @@ select max(identity(dummy + 1)) over () from remote('127.0.0.{1,2}', system, one
|
||||
1
|
||||
1
|
||||
drop table if exists t_01568;
|
||||
create table t_01568 engine Log as select intDiv(number, 3) p, number from numbers(9);
|
||||
create table t_01568 engine Memory as select intDiv(number, 3) p, number from numbers(9);
|
||||
select sum(number) over w, max(number) over w from t_01568 window w as (partition by p);
|
||||
3 2
|
||||
3 2
|
||||
|
@ -9,7 +9,7 @@ select max(identity(dummy + 1)) over () from remote('127.0.0.{1,2}', system, one
|
||||
|
||||
drop table if exists t_01568;
|
||||
|
||||
create table t_01568 engine Log as select intDiv(number, 3) p, number from numbers(9);
|
||||
create table t_01568 engine Memory as select intDiv(number, 3) p, number from numbers(9);
|
||||
|
||||
select sum(number) over w, max(number) over w from t_01568 window w as (partition by p);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user