You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by dj...@apache.org on 2005/02/11 23:18:21 UTC

svn commit: r153466 - incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/outparams.java

Author: djd
Date: Fri Feb 11 14:18:20 2005
New Revision: 153466

URL: http://svn.apache.org/viewcvs?view=rev&rev=153466
Log:
Missing test change from last JSR169 related checkin.

Modified:
    incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/outparams.java

Modified: incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/outparams.java
URL: http://svn.apache.org/viewcvs/incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/outparams.java?view=diff&r1=153465&r2=153466
==============================================================================
--- incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/outparams.java (original)
+++ incubator/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/outparams.java Fri Feb 11 14:18:20 2005
@@ -1079,7 +1079,7 @@
 			case Types.DECIMAL:
 			case Types.NUMERIC:
 				strbuf.append("getBigDecimal("+arg+") = ");
-				BigDecimal bd = cs.getBigDecimal(arg, 2);
+				BigDecimal bd = cs.getBigDecimal(arg);
 				strbuf.append(bd == null ? "null" : bd.toString());
 				break;