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 rh...@apache.org on 2009/04/20 17:01:13 UTC

svn commit: r766722 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/system/oe/schema/dataroutines.sql

Author: rhillegas
Date: Mon Apr 20 15:01:13 2009
New Revision: 766722

URL: http://svn.apache.org/viewvc?rev=766722&view=rev
Log:
DERBY-4169: Change two SMALLINT routine args to be INT so that they will match the corresponding int args of the target Java method.

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/system/oe/schema/dataroutines.sql

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/system/oe/schema/dataroutines.sql
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/system/oe/schema/dataroutines.sql?rev=766722&r1=766721&r2=766722&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/system/oe/schema/dataroutines.sql (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/system/oe/schema/dataroutines.sql Mon Apr 20 15:01:13 2009
@@ -19,7 +19,7 @@
 -- Function to provided an updated C_DATA column for a customer account.
 -- Section 2.5.2.2
 CREATE FUNCTION BAD_CREDIT_DATA(
-    C_DATA VARCHAR(500), W SMALLINT, D SMALLINT,
+    C_DATA VARCHAR(500), W INT, D INT,
     CW SMALLINT, CD SMALLINT, C_ID INTEGER,
     AMOUNT DECIMAL(6, 2))
 RETURNS VARCHAR(500)