proton icon indicating copy to clipboard operation
proton copied to clipboard

support append left all join append

Open yokofly opened this issue 1 year ago • 0 comments

Describe what enhancement you'd like to have

 create stream t1(id int, value float);
 insert into t1(id, value) values(1, 7.8)(2, 4.6)(3, 5.1)(3, 0.1);


 create stream t3(id int, qty int);
 insert into t3(id, qty) values(5, 300)(3, 500)(1, 800);


 select id, value, qty from t1 left join t3 on t1.id = t3.id;
 Received exception from server (version 1.5.6):
 Code: 48. DB::Exception: Received from localhost:8463. DB::Exception: 'Append stream' LEFT ALL JOIN 'Append stream' is not supported. (NOT_IMPLEMENTED

yokofly avatar May 17 '24 06:05 yokofly