Is your feature request related to a problem? Please describe.
#11413 added a GpuMultiContains which generates an array of bool column.
#10977added a GpuMultipleContains for rlike optimization, with a little diff, it returns a bool column.
We can leverage GpuMultiContains in GpuMultipleContains, and execute an or operator on bool column array, then get a bool column.
Describe the solution you'd like
Do perf test first to check if this can get benifit.
Is your feature request related to a problem? Please describe.
#11413 added a
GpuMultiContains
which generates an array of bool column. #10977added aGpuMultipleContains
for rlike optimization, with a little diff, it returns a bool column. We can leverageGpuMultiContains
inGpuMultipleContains
, and execute anor
operator on bool column array, then get a bool column.Describe the solution you'd like Do perf test first to check if this can get benifit.