Details
Description
When executing a large query or oather large operations, Derby throws a java linkage exception.
This is because the generated byte code exceeds the JVM limits for method sizes constant pool entries etc, the amount of code in a conditional etc. The attached repro demonstrates the problem but the problem can also occur for other operations that generate lots of byte code. The repro is just a new functional test,
so should be copied to derbyTesting/functionTests/lang/largeCodeGen.java and run like
java -Djvmflags=-Xmx512M org.apache.derbyTesting.harness.RunTest lang/largeCodeGen
When this problem is fixed additional scenarios should be added to this test.
ERROR XBCM1: Java linkage error thrown during load of
generated class org.apache.derby.exe.aced07c066x0102xca87x3319x00004aa5686e1.
at org.apache.derby.iapi.error.StandardException.newException(StandardException.java:315)
at org.apache.derby.impl.services.reflect.DatabaseClasses.loadGeneratedClass(DatabaseClasses.java:162)
at org.apache.derby.impl.services.bytecode.GClass.getGeneratedClass(GClass.java:59)
at org.apache.derby.impl.sql.compile.ExpressionClassBuilder.getGeneratedClass(ExpressionClassBuilder.java:920)
at org.apache.derby.impl.sql.compile.StatementNode.generate(StatementNode.java:270)
at org.apache.derby.impl.sql.GenericStatement.prepMinion(GenericStatement.java:432)
at org.apache.derby.impl.sql.GenericStatement.prepare(GenericStatement.java:107)
at org.apache.derby.impl.sql.conn.GenericLanguageConnectionContext.prepareInternalStatement(GenericLanguageConnectionContext.java:688)
at org.apache.derby.impl.jdbc.EmbedPreparedStatement.<init>(EmbedPreparedStatement.java:118)
at org.apache.derby.impl.jdbc.EmbedPreparedStatement20.<init>(EmbedPreparedStatement20.java:82)
at org.apache.derby.impl.jdbc.EmbedPreparedStatement30.<init>(EmbedPreparedStatement30.java:62)
at org.apache.derby.jdbc.Driver30.newEmbedPreparedStatement(Driver30.java:92)
at org.apache.derby.impl.jdbc.EmbedConnection.prepareStatement(EmbedConnection.java:675)
at org.apache.derby.impl.jdbc.EmbedConnection.prepareStatement(EmbedConnection.java:519)
at org.apache.derbyTesting.functionTests.tests.lang.largeCodeGen.main(largeCodeGen.java:86)
Exception in thread "main"
Attachments
Attachments
Issue Links
- incorporates
-
DERBY-732 ERROR XBCM1: Java linkage error thrown during load of generated class for query with large number of logical operators and substitution parameters.
- Closed
- is related to
-
DERBY-732 ERROR XBCM1: Java linkage error thrown during load of generated class for query with large number of logical operators and substitution parameters.
- Closed