oap-project / gazelle_plugin

Native SQL Engine plugin for Spark SQL with vectorized SIMD optimizations.
Apache License 2.0
256 stars 77 forks source link

Concat with only one expression #1196

Closed jackylee-ch closed 1 year ago

jackylee-ch commented 1 year ago

Describe the bug Concat with only one expression is not supported yet.

To Reproduce

create table test(expr string) using parquet;
insert into test values("a");
select concat(expr) from test;

Expected behavior Return a.