aboutsummaryrefslogtreecommitdiff
path: root/exec/interpreter/src/test/java/org/apache/drill
AgeCommit message (Collapse)Author
2018-04-17DRILL-6320: Fixed license headers.Drill Dev
closes #1207
2015-03-19DRILL-2353: Add interpreter based partition pruning.Aman Sinha
Integrate Jacques's interpreter based partition pruning with Jason's interpreter refactoring that removed interpreter module and added that functionality in the exec module. Ensure boolean operators are correctly handled when traversing expression tree to find partition filters. Resolve merge conflicts after rebasing to master branch. Additional fixes for handling OR conditions.
2015-03-19DRILL-2499: Remove orphan test Drill2130InterpreterHamcrestConfigurationTestAditya Kishore
2015-03-17DRILL-2406: part 1 - Remove interpreter generation, add new reflection based ↵Jason Altekruse
expression interpretation. Changed interpreted evaluation to run the setup method after the input parameters have been set using reflection so they are available in the case where the inputs are constant and are used in the setup method. Changes that were originally committed in later patches for 2060 and 2173, as they are needed for this to run on its own: - Change to DrillSimpleFuncHolder that belongs with the interpreter refactoring. - ValueHolderHelper changes needed for interpreter refactoring. Updates after review comments from Jinfeng: Change the DrillSimpleFunc creation in the new interpreter to use a direct reference to the class type of the Function rather than the class name. Add test case for 'like' function evaluated in the interpreter (has a meaningful setup method that uses one of the inputs to initialize a pattern matcher) Update from Aman's review: Add a test case for using a cast in interpreted expression evaluation.
2015-03-17DRILL-2143: Part 2 - fix interpreter and add QueryDateTimeInfo injectable to ↵Jason Altekruse
fill in holes from removing RecordBatch from UDFs - Move list of accepted injectable types into the UdfUtilities interface for easier maintenance. Fix one more new function to remove RecordBatch from setup method. Add back UdfUtilities interface to FragmentContext lost in rebasing. Remove unneeded testcase in TestExampleQueries, remove commented out code in InterpreterGenerator previously used to handle DrillBuf injectables, now being handled by reflection to set the DrillBuf rather than the previously generated code that would use the direct reference to the incoming RecordBatch to get a buffer. Fix docs on UdfUtilities and package docs for drill/exec/expr, belongs with 2143 part 2 patch. Fix belongs with 2143, change interpreter to output a ValueHolder instead of a ValueVector in the case of a constant expression. 2143 update - Use reflection to remove boilerplate for adding new injectable types for UDFs.
2015-02-25DRILL-2130: Fixed JUnit/Hamcrest/Mockito/Paranamer class path problem.dbarclay
2014-09-23DRILL-1383: Support interpreted execution for Drill expression tree.Jinfeng Ni
Fix OOM while running InterpreterBuilder