Avoid deadlock due to Log usage in 01568_window_functions_distributed

This commit is contained in:
Azat Khuzhin 2021-05-05 23:56:14 +03:00
parent 8703b7863d
commit e5cff95cc8
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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);