We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf5673a commit 165e602Copy full SHA for 165e602
1 file changed
sqldev/src/main/java/org/utplsql/sqldev/dal/UtplsqlDao.java
@@ -888,8 +888,8 @@ public OutputLines doInCallableStatement(final CallableStatement cs) throws SQLE
888
cs.setInt(2, bufferSize);
889
cs.execute();
890
final OutputLines out = new OutputLines();
891
- Object _array = cs.getArray(1).getArray();
892
- out.setLines(((String[]) _array));
+ Object array = cs.getArray(1).getArray();
+ out.setLines(((String[]) array));
893
out.setNumlines(Integer.valueOf(cs.getInt(2)));
894
return out;
895
}
0 commit comments