dongma commented on issue #2292:
URL: 
https://github.com/apache/incubator-hugegraph/issues/2292#issuecomment-1689926466

   > Looking through the error stack, I found the source code 
org.codehaus.groovy.classgen.asm.CallSiteWriter#getCreateArraySignature
   > 
   > ```
   >     private static String getCreateArraySignature(int numberOfArguments) {
   >         if (numberOfArguments >= 255) {
   >             throw new IllegalArgumentException(String.format("The max 
number of supported arguments is %s, but found %s", 255, numberOfArguments));
   >         } else {
   >             if (sig[numberOfArguments] == null) {
   >                 StringBuilder sb = new StringBuilder("(");
   > 
   >                 for(int i = 0; i != numberOfArguments; ++i) {
   >                     sb.append("Ljava/lang/Object;");
   >                 }
   > 
   >                 sb.append(")[Ljava/lang/Object;");
   >                 sig[numberOfArguments] = sb.toString();
   >             }
   > 
   >             return sig[numberOfArguments];
   >         }
   >     }
   > ```
   > 
   > There are hard codes here, so it is recommended that you batch 255 queries 
in the business logic layer.
   
   Ok,Thanks


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to