Sree Charan Manamala
Sree Charan Manamala
### Description Currently If a segment does not have a column, then an math expression processor triggered on that segment involving that column is resulting in a `Unable to vectorize...
### Description This PR allows to use the MV_FILTER_ONLY & MV_FILTER_NONE functions with a non literal argument. Currently `select mv_filter_only('mvd_dim', 'array_dim') from 'table'` returns a `Unhandled Query Planning Failure` This...
### Description Allow ARRAY_OVERLAP operator to take numeric value as input Allow null & double values as elements of array passed as sql parameter #### Release note ##### Key changed/added...
### Description Register a Ser-De for RowsAndColumns so that the window operator query running on leaf operators would be transferred properly on the wire. Would fix the empty response given...
### Description Update dynamic parameter docs to provide how it can used to replace an Array ##### Key changed/added classes in this PR * `sql.md` This PR has: - [...
### Description This commit fixes the windowed aggregation involving array type selector. example query (earlier used to fail with a defensive exception): ``` select countryName, cityName, channel, array_concat_agg(ARRAY['N/A', channel], 10000)...
### Description In case of few aggregators for example BloomSqlAggregator, BaseVarianceSqlAggregator etc, the aggName is being updated from `a0 to a0:agg`, breaching the contract as we would expect the aggName...
### Description This commit aims to shuffle the window operators optimally to reduce sort and partition operators. for example: ``` partition by k1 order by k2, k3 partition by k2...