You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by Mehant Baid <ba...@gmail.com> on 2013/12/13 08:26:13 UTC

Review Request 16241: DRILL-323: Modify FunctionRegistry to handle functions with greater than two inputs correctly.

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/16241/
-----------------------------------------------------------

Review request for drill and Jacques Nadeau.


Repository: drill-git


Description
-------

In FunctionRegistry (createByOp) while creating a logical expression for the operator we were using the entire list of arguments instead of using two at a time. For example while performing an 'add' with three numbers, instead of creating a logical expression with the first two inputs, which would be input to another logical expression along with the third input, we were creating a single logical expression with three inputs. In this case we would try and find a function implementation for add with three inputs and fail. 

Minor modification to simply use the two arguments at a time and create the appropriate logical expression tree.


Diffs
-----

  common/src/main/java/org/apache/drill/common/expression/FunctionRegistry.java 73e1925 
  exec/java-exec/src/test/java/org/apache/drill/exec/fn/impl/TestMultiInputAdd.java PRE-CREATION 
  exec/java-exec/src/test/resources/functions/multi_input_add_test.json PRE-CREATION 

Diff: https://reviews.apache.org/r/16241/diff/


Testing
-------

Added test that performs addition with four inputs. 


Thanks,

Mehant Baid


Re: Review Request 16241: DRILL-323: Modify FunctionRegistry to handle functions with greater than two inputs correctly.

Posted by Jacques Nadeau <ja...@gmail.com>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/16241/#review30519
-----------------------------------------------------------

Ship it!


Ship It!

- Jacques Nadeau


On Dec. 13, 2013, 7:26 a.m., Mehant Baid wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/16241/
> -----------------------------------------------------------
> 
> (Updated Dec. 13, 2013, 7:26 a.m.)
> 
> 
> Review request for drill and Jacques Nadeau.
> 
> 
> Repository: drill-git
> 
> 
> Description
> -------
> 
> In FunctionRegistry (createByOp) while creating a logical expression for the operator we were using the entire list of arguments instead of using two at a time. For example while performing an 'add' with three numbers, instead of creating a logical expression with the first two inputs, which would be input to another logical expression along with the third input, we were creating a single logical expression with three inputs. In this case we would try and find a function implementation for add with three inputs and fail. 
> 
> Minor modification to simply use the two arguments at a time and create the appropriate logical expression tree.
> 
> 
> Diffs
> -----
> 
>   common/src/main/java/org/apache/drill/common/expression/FunctionRegistry.java 73e1925 
>   exec/java-exec/src/test/java/org/apache/drill/exec/fn/impl/TestMultiInputAdd.java PRE-CREATION 
>   exec/java-exec/src/test/resources/functions/multi_input_add_test.json PRE-CREATION 
> 
> Diff: https://reviews.apache.org/r/16241/diff/
> 
> 
> Testing
> -------
> 
> Added test that performs addition with four inputs. 
> 
> 
> Thanks,
> 
> Mehant Baid
> 
>


Re: Review Request 16241: DRILL-323: Modify FunctionRegistry to handle functions with greater than two inputs correctly.

Posted by Mehant Baid <ba...@gmail.com>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/16241/
-----------------------------------------------------------

(Updated March 7, 2014, 8:51 a.m.)


Review request for drill and Jacques Nadeau.


Changes
-------

Rebased to latest master. 


Repository: drill-git


Description
-------

In FunctionRegistry (createByOp) while creating a logical expression for the operator we were using the entire list of arguments instead of using two at a time. For example while performing an 'add' with three numbers, instead of creating a logical expression with the first two inputs, which would be input to another logical expression along with the third input, we were creating a single logical expression with three inputs. In this case we would try and find a function implementation for add with three inputs and fail. 

Minor modification to simply use the two arguments at a time and create the appropriate logical expression tree.


Diffs (updated)
-----

  common/src/main/java/org/apache/drill/common/expression/FunctionRegistry.java 7cb386a 
  exec/java-exec/src/test/java/org/apache/drill/exec/fn/impl/TestMultiInputAdd.java PRE-CREATION 
  exec/java-exec/src/test/resources/functions/multi_input_add_test.json PRE-CREATION 

Diff: https://reviews.apache.org/r/16241/diff/


Testing
-------

Added test that performs addition with four inputs. 


Thanks,

Mehant Baid