Update 02815_fix_not_found_constants_col_in_block.sql

This commit is contained in:
Alexey Milovidov 2023-07-22 01:05:39 +03:00 committed by GitHub
parent f2d184cf1b
commit c6ffc9f266
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,3 +3,4 @@ CREATE TABLE t0 (vkey UInt32, c0 Float32, primary key(c0)) engine = AggregatingM
insert into t0 values (19000, 1);
select null as c_2_0, ref_2.c0 as c_2_1, ref_2.vkey as c_2_2 from t0 as ref_2 order by c_2_0 asc, c_2_1 asc, c_2_2 asc;
select null as c_2_0, ref_2.c0 as c_2_1, ref_2.vkey as c_2_2 from t0 as ref_2 order by c_2_0 asc, c_2_1 asc;
DROP TABLE t0;