abstract class org.apache.drill.jdbc.impl.DrillPreparedStatementImpl extends oadd.org.apache.calcite.avatica.AvaticaPreparedStatement implements org.apache.drill.jdbc.DrillPreparedStatement, org.apache.drill.jdbc.impl.DrillRemoteStatement
{
private final oadd.org.apache.drill.exec.proto.UserProtos$PreparedStatement preparedStatementHandle;
protected void <init>(org.apache.drill.jdbc.impl.DrillConnectionImpl, oadd.org.apache.calcite.avatica.Meta$StatementHandle, oadd.org.apache.calcite.avatica.Meta$Signature, oadd.org.apache.drill.exec.proto.UserProtos$PreparedStatement, int, int, int) throws java.sql.SQLException
{
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
oadd.org.apache.calcite.avatica.Meta$Signature v;
java.util.List v, v;
oadd.org.apache.calcite.avatica.Meta$StatementHandle v;
oadd.org.apache.drill.exec.proto.UserProtos$PreparedStatement v;
int v, v, v;
org.apache.drill.jdbc.impl.DrillStatementRegistry v;
org.apache.drill.jdbc.impl.DrillConnectionImpl v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: org.apache.drill.jdbc.impl.DrillConnectionImpl;
v := @parameter: oadd.org.apache.calcite.avatica.Meta$StatementHandle;
v := @parameter: oadd.org.apache.calcite.avatica.Meta$Signature;
v := @parameter: oadd.org.apache.drill.exec.proto.UserProtos$PreparedStatement;
v := @parameter: int;
v := @parameter: int;
v := @parameter: int;
specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: void <init>(oadd.org.apache.calcite.avatica.AvaticaConnection,oadd.org.apache.calcite.avatica.Meta$StatementHandle,oadd.org.apache.calcite.avatica.Meta$Signature,int,int,int)>(v, v, v, v, v, v);
v = v.<org.apache.drill.jdbc.impl.DrillConnectionImpl: org.apache.drill.jdbc.impl.DrillStatementRegistry openStatementsRegistry>;
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillStatementRegistry: void addStatement(java.sql.Statement)>(v);
v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: oadd.org.apache.drill.exec.proto.UserProtos$PreparedStatement preparedStatementHandle> = v;
if v == null goto label;
v = v.<oadd.org.apache.calcite.avatica.Meta$Signature: java.util.List columns>;
v = virtualinvoke v.<oadd.org.apache.drill.exec.proto.UserProtos$PreparedStatement: java.util.List getColumnsList()>();
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillColumnMetaDataList: void updateColumnMetaData(java.util.List)>(v);
label:
return;
}
protected void checkOpen() throws java.sql.SQLException
{
org.apache.drill.jdbc.AlreadyClosedSqlException v;
boolean v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v = virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: boolean isClosed()>();
if v == 0 goto label;
v = new org.apache.drill.jdbc.AlreadyClosedSqlException;
specialinvoke v.<org.apache.drill.jdbc.AlreadyClosedSqlException: void <init>(java.lang.String)>("PreparedStatement is already closed.");
throw v;
label:
return;
}
oadd.org.apache.drill.exec.proto.UserProtos$PreparedStatement getPreparedStatementHandle()
{
oadd.org.apache.drill.exec.proto.UserProtos$PreparedStatement v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v = v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: oadd.org.apache.drill.exec.proto.UserProtos$PreparedStatement preparedStatementHandle>;
return v;
}
protected oadd.org.apache.calcite.avatica.AvaticaParameter getParameter(int) throws java.sql.SQLException
{
int v;
java.sql.SQLFeatureNotSupportedException v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: int;
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: void checkOpen()>();
v = new java.sql.SQLFeatureNotSupportedException;
specialinvoke v.<java.sql.SQLFeatureNotSupportedException: void <init>(java.lang.String)>("Prepared-statement dynamic parameters are not supported.");
throw v;
}
public void cleanUp()
{
oadd.org.apache.calcite.avatica.AvaticaConnection v;
org.apache.drill.jdbc.impl.DrillStatementRegistry v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v = v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: oadd.org.apache.calcite.avatica.AvaticaConnection connection>;
v = v.<org.apache.drill.jdbc.impl.DrillConnectionImpl: org.apache.drill.jdbc.impl.DrillStatementRegistry openStatementsRegistry>;
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillStatementRegistry: void removeStatement(java.sql.Statement)>(v);
return;
}
public void setEscapeProcessing(boolean) throws java.sql.SQLException
{
java.lang.UnsupportedOperationException v;
java.sql.SQLFeatureNotSupportedException v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
java.lang.String v;
boolean v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: boolean;
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: void checkOpen()>();
label:
specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: void setEscapeProcessing(boolean)>(v);
label:
goto label;
label:
v := @caughtexception;
v = new java.sql.SQLFeatureNotSupportedException;
v = virtualinvoke v.<java.lang.UnsupportedOperationException: java.lang.String getMessage()>();
specialinvoke v.<java.sql.SQLFeatureNotSupportedException: void <init>(java.lang.String,java.lang.Throwable)>(v, v);
throw v;
label:
return;
catch java.lang.UnsupportedOperationException from label to label with label;
}
public void setCursorName(java.lang.String) throws java.sql.SQLException
{
java.lang.UnsupportedOperationException v;
java.sql.SQLFeatureNotSupportedException v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
java.lang.String v, v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: java.lang.String;
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: void checkOpen()>();
label:
specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: void setCursorName(java.lang.String)>(v);
label:
goto label;
label:
v := @caughtexception;
v = new java.sql.SQLFeatureNotSupportedException;
v = virtualinvoke v.<java.lang.UnsupportedOperationException: java.lang.String getMessage()>();
specialinvoke v.<java.sql.SQLFeatureNotSupportedException: void <init>(java.lang.String,java.lang.Throwable)>(v, v);
throw v;
label:
return;
catch java.lang.UnsupportedOperationException from label to label with label;
}
public boolean getMoreResults() throws java.sql.SQLException
{
java.lang.UnsupportedOperationException v;
java.sql.SQLFeatureNotSupportedException v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
java.lang.String v;
boolean v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
label:
v = specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: boolean getMoreResults()>();
label:
return v;
label:
v := @caughtexception;
v = new java.sql.SQLFeatureNotSupportedException;
v = virtualinvoke v.<java.lang.UnsupportedOperationException: java.lang.String getMessage()>();
specialinvoke v.<java.sql.SQLFeatureNotSupportedException: void <init>(java.lang.String,java.lang.Throwable)>(v, v);
throw v;
catch java.lang.UnsupportedOperationException from label to label with label;
}
public boolean getMoreResults(int) throws java.sql.SQLException
{
java.lang.UnsupportedOperationException v;
java.sql.SQLFeatureNotSupportedException v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
int v;
java.lang.String v;
boolean v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: int;
label:
v = specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: boolean getMoreResults(int)>(v);
label:
return v;
label:
v := @caughtexception;
v = new java.sql.SQLFeatureNotSupportedException;
v = virtualinvoke v.<java.lang.UnsupportedOperationException: java.lang.String getMessage()>();
specialinvoke v.<java.sql.SQLFeatureNotSupportedException: void <init>(java.lang.String,java.lang.Throwable)>(v, v);
throw v;
catch java.lang.UnsupportedOperationException from label to label with label;
}
public java.sql.ResultSet getGeneratedKeys() throws java.sql.SQLException
{
java.lang.UnsupportedOperationException v;
java.sql.ResultSet v;
java.sql.SQLFeatureNotSupportedException v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
java.lang.String v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: void checkOpen()>();
label:
v = specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: java.sql.ResultSet getGeneratedKeys()>();
label:
return v;
label:
v := @caughtexception;
v = new java.sql.SQLFeatureNotSupportedException;
v = virtualinvoke v.<java.lang.UnsupportedOperationException: java.lang.String getMessage()>();
specialinvoke v.<java.sql.SQLFeatureNotSupportedException: void <init>(java.lang.String,java.lang.Throwable)>(v, v);
throw v;
catch java.lang.UnsupportedOperationException from label to label with label;
}
public long executeLargeUpdate(java.lang.String, int) throws java.sql.SQLException
{
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
int v;
long v;
java.lang.String v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: java.lang.String;
v := @parameter: int;
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: void checkOpen()>();
v = specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: long executeLargeUpdate(java.lang.String,int)>(v, v);
return v;
}
public long executeLargeUpdate(java.lang.String, int[]) throws java.sql.SQLException
{
int[] v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
long v;
java.lang.String v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: java.lang.String;
v := @parameter: int[];
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: void checkOpen()>();
v = specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: long executeLargeUpdate(java.lang.String,int[])>(v, v);
return v;
}
public long executeLargeUpdate(java.lang.String, java.lang.String[]) throws java.sql.SQLException
{
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
java.lang.String[] v;
long v;
java.lang.String v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: java.lang.String;
v := @parameter: java.lang.String[];
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: void checkOpen()>();
v = specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: long executeLargeUpdate(java.lang.String,java.lang.String[])>(v, v);
return v;
}
public int executeUpdate(java.lang.String, int) throws java.sql.SQLException
{
java.lang.UnsupportedOperationException v;
java.sql.SQLFeatureNotSupportedException v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
int v, v;
java.lang.String v, v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: java.lang.String;
v := @parameter: int;
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: void checkOpen()>();
label:
v = specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: int executeUpdate(java.lang.String,int)>(v, v);
label:
return v;
label:
v := @caughtexception;
v = new java.sql.SQLFeatureNotSupportedException;
v = virtualinvoke v.<java.lang.UnsupportedOperationException: java.lang.String getMessage()>();
specialinvoke v.<java.sql.SQLFeatureNotSupportedException: void <init>(java.lang.String,java.lang.Throwable)>(v, v);
throw v;
catch java.lang.UnsupportedOperationException from label to label with label;
}
public int executeUpdate(java.lang.String, int[]) throws java.sql.SQLException
{
java.lang.UnsupportedOperationException v;
int[] v;
java.sql.SQLFeatureNotSupportedException v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
int v;
java.lang.String v, v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: java.lang.String;
v := @parameter: int[];
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: void checkOpen()>();
label:
v = specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: int executeUpdate(java.lang.String,int[])>(v, v);
label:
return v;
label:
v := @caughtexception;
v = new java.sql.SQLFeatureNotSupportedException;
v = virtualinvoke v.<java.lang.UnsupportedOperationException: java.lang.String getMessage()>();
specialinvoke v.<java.sql.SQLFeatureNotSupportedException: void <init>(java.lang.String,java.lang.Throwable)>(v, v);
throw v;
catch java.lang.UnsupportedOperationException from label to label with label;
}
public int executeUpdate(java.lang.String, java.lang.String[]) throws java.sql.SQLException
{
java.lang.UnsupportedOperationException v;
java.sql.SQLFeatureNotSupportedException v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
int v;
java.lang.String[] v;
java.lang.String v, v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: java.lang.String;
v := @parameter: java.lang.String[];
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: void checkOpen()>();
label:
v = specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: int executeUpdate(java.lang.String,java.lang.String[])>(v, v);
label:
return v;
label:
v := @caughtexception;
v = new java.sql.SQLFeatureNotSupportedException;
v = virtualinvoke v.<java.lang.UnsupportedOperationException: java.lang.String getMessage()>();
specialinvoke v.<java.sql.SQLFeatureNotSupportedException: void <init>(java.lang.String,java.lang.Throwable)>(v, v);
throw v;
catch java.lang.UnsupportedOperationException from label to label with label;
}
public boolean execute(java.lang.String, int) throws java.sql.SQLException
{
java.lang.UnsupportedOperationException v;
java.sql.SQLFeatureNotSupportedException v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
int v;
java.lang.String v, v;
boolean v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: java.lang.String;
v := @parameter: int;
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: void checkOpen()>();
label:
v = specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: boolean execute(java.lang.String,int)>(v, v);
label:
return v;
label:
v := @caughtexception;
v = new java.sql.SQLFeatureNotSupportedException;
v = virtualinvoke v.<java.lang.UnsupportedOperationException: java.lang.String getMessage()>();
specialinvoke v.<java.sql.SQLFeatureNotSupportedException: void <init>(java.lang.String,java.lang.Throwable)>(v, v);
throw v;
catch java.lang.UnsupportedOperationException from label to label with label;
}
public boolean execute(java.lang.String, int[]) throws java.sql.SQLException
{
java.lang.UnsupportedOperationException v;
int[] v;
java.sql.SQLFeatureNotSupportedException v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
java.lang.String v, v;
boolean v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: java.lang.String;
v := @parameter: int[];
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: void checkOpen()>();
label:
v = specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: boolean execute(java.lang.String,int[])>(v, v);
label:
return v;
label:
v := @caughtexception;
v = new java.sql.SQLFeatureNotSupportedException;
v = virtualinvoke v.<java.lang.UnsupportedOperationException: java.lang.String getMessage()>();
specialinvoke v.<java.sql.SQLFeatureNotSupportedException: void <init>(java.lang.String,java.lang.Throwable)>(v, v);
throw v;
catch java.lang.UnsupportedOperationException from label to label with label;
}
public boolean execute(java.lang.String, java.lang.String[]) throws java.sql.SQLException
{
java.lang.UnsupportedOperationException v;
java.sql.SQLFeatureNotSupportedException v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
java.lang.String[] v;
java.lang.String v, v;
boolean v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: java.lang.String;
v := @parameter: java.lang.String[];
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: void checkOpen()>();
label:
v = specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: boolean execute(java.lang.String,java.lang.String[])>(v, v);
label:
return v;
label:
v := @caughtexception;
v = new java.sql.SQLFeatureNotSupportedException;
v = virtualinvoke v.<java.lang.UnsupportedOperationException: java.lang.String getMessage()>();
specialinvoke v.<java.sql.SQLFeatureNotSupportedException: void <init>(java.lang.String,java.lang.Throwable)>(v, v);
throw v;
catch java.lang.UnsupportedOperationException from label to label with label;
}
public boolean isClosed()
{
java.sql.SQLException v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
java.lang.RuntimeException v;
java.lang.String v;
boolean v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
label:
v = specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: boolean isClosed()>();
label:
return v;
label:
v := @caughtexception;
v = new java.lang.RuntimeException;
v = dynamicinvoke "makeConcatWithConstants" <java.lang.String (java.sql.SQLException)>(v) <java.lang.invoke.StringConcatFactory: java.lang.invoke.CallSite makeConcatWithConstants(java.lang.invoke.MethodHandles$Lookup,java.lang.String,java.lang.invoke.MethodType,java.lang.String,java.lang.Object[])>("Unexpected \u from AvaticaPreparedStatement.isClosed");
specialinvoke v.<java.lang.RuntimeException: void <init>(java.lang.String)>(v);
throw v;
catch java.sql.SQLException from label to label with label;
}
public void setPoolable(boolean) throws java.sql.SQLException
{
java.lang.UnsupportedOperationException v;
java.sql.SQLFeatureNotSupportedException v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
java.lang.String v;
boolean v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: boolean;
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: void checkOpen()>();
label:
specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: void setPoolable(boolean)>(v);
label:
goto label;
label:
v := @caughtexception;
v = new java.sql.SQLFeatureNotSupportedException;
v = virtualinvoke v.<java.lang.UnsupportedOperationException: java.lang.String getMessage()>();
specialinvoke v.<java.sql.SQLFeatureNotSupportedException: void <init>(java.lang.String,java.lang.Throwable)>(v, v);
throw v;
label:
return;
catch java.lang.UnsupportedOperationException from label to label with label;
}
public void setObject(int, java.lang.Object, java.sql.SQLType, int) throws java.sql.SQLException
{
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
int v, v;
java.lang.Object v;
java.sql.SQLType v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: int;
v := @parameter: java.lang.Object;
v := @parameter: java.sql.SQLType;
v := @parameter: int;
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: void checkOpen()>();
specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: void setObject(int,java.lang.Object,java.sql.SQLType,int)>(v, v, v, v);
return;
}
public void setObject(int, java.lang.Object, java.sql.SQLType) throws java.sql.SQLException
{
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
int v;
java.lang.Object v;
java.sql.SQLType v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: int;
v := @parameter: java.lang.Object;
v := @parameter: java.sql.SQLType;
virtualinvoke v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: void checkOpen()>();
specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: void setObject(int,java.lang.Object,java.sql.SQLType)>(v, v, v);
return;
}
public void setLargeMaxRows(long) throws java.sql.SQLException
{
java.lang.Throwable v;
oadd.org.apache.calcite.avatica.AvaticaConnection v;
oadd.org.apache.calcite.avatica.AvaticaStatement v;
org.apache.drill.jdbc.impl.DrillPreparedStatementImpl v;
long v;
java.lang.String v;
v := @this: org.apache.drill.jdbc.impl.DrillPreparedStatementImpl;
v := @parameter: long;
specialinvoke v.<oadd.org.apache.calcite.avatica.AvaticaPreparedStatement: void setLargeMaxRows(long)>(v);
v = v.<org.apache.drill.jdbc.impl.DrillPreparedStatementImpl: oadd.org.apache.calcite.avatica.AvaticaConnection connection>;
v = virtualinvoke v.<oadd.org.apache.calcite.avatica.AvaticaConnection: oadd.org.apache.calcite.avatica.AvaticaStatement createStatement()>();
label:
v = dynamicinvoke "makeConcatWithConstants" <java.lang.String (long)>(v) <java.lang.invoke.StringConcatFactory: java.lang.invoke.CallSite makeConcatWithConstants(java.lang.invoke.MethodHandles$Lookup,java.lang.String,java.lang.invoke.MethodType,java.lang.String,java.lang.Object[])>("ALTER SESSION SET `exec.query.max_rows`=\u0001");
interfaceinvoke v.<java.sql.Statement: boolean execute(java.lang.String)>(v);
label:
interfaceinvoke v.<java.sql.Statement: void close()>();
goto label;
label:
v := @caughtexception;
throw v;
label:
return;
catch java.lang.Throwable from label to label with label;
}
}