This commit is contained in:
Will Gittoes 2019-03-13 14:20:58 +11:00
parent 54401083ce
commit 30401bfed8
No known key found for this signature in database
GPG Key ID: 521026A02DB0BB42
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ class ProcedureCallTest extends AgentTestRunner {
ProcedureCall call = session.createStoredProcedureCall("TEST_PROC")
call.registerParameter("nonexistent", Long, ParameterMode.IN)
call.getParameterRegistration("nonexistent").bindValue(420)
call.getParameterRegistration("nonexistent").bindValue(420L)
try {
call.getOutputs()
} catch (Exception e) {