blob: e10f3726d43b484429567c04c07dac7ef2e62eee [file] [log] [blame]
create table t1 (col0 string);
insert into t1(col0) values ('xyfacebookyyx'),(' tech ');
explain vectorization expression
select rtrim(col0) from t1 group by col0;
select rtrim(col0) from t1 group by col0;
explain vectorization expression
select rtrim(col0, 'xy') from t1 group by col0;
select rtrim(col0, 'xy') from t1 group by col0;
drop table t1;