Skip to content

Commit

Permalink
Update the limit to 64 from 84 to address the comment
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaner08 committed Mar 14, 2023
1 parent 4f25f6b commit b08a3cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ else if (type == ConnectorSession.class) {
private static InvocationArgumentConvention getPreferredArgumentConvention(BytecodeNode argument, int argumentCount, boolean nullable)
{
// a Java function can only have 255 arguments, so if the count is low use block position or boxed nullable as they are more efficient
if (argumentCount <= 84) {
if (argumentCount <= 64) {
if (argument instanceof InputReferenceNode) {
return BLOCK_POSITION;
}
Expand Down

0 comments on commit b08a3cc

Please sign in to comment.