Execute the compiled module against the provided vectors.
| 120 | |
| 121 | /// Execute the compiled module against the provided vectors. |
| 122 | Status LLVMGenerator::Execute(const arrow::RecordBatch& record_batch, |
| 123 | const ArrayDataVector& output_vector) const { |
| 124 | return Execute(record_batch, nullptr, output_vector); |
| 125 | } |
| 126 | |
| 127 | /// Execute the compiled module against the provided vectors based on the type of |
| 128 | /// selection vector. |
no test coverage detected