create table t_test
(
c1 char(1),
c2 char(2),
constraint pk_test primary key (c1)
);
insert into t_test values('1','1');
select * from (
SELECT c1 as c3 FROM t_test
);This issue did not exist in versions before 2.10. https://issues.apache.org/jira/browse/IGNITE-16628
