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