You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by David Van Couvering <Da...@Sun.COM> on 2006/08/22 02:14:55 UTC

JDBC4 build failing for me

I am running with the latest drop from the jdk 1.6 site, and I have the 
latest stuff from the trunk, and I am getting the following errors. 
These appear to be members of java.sql.DatabaseMetaData.  I am hoping 
someone familiar with this area of the code can provide some quick 
guidance...

Thanks,

David

===

     [javac] 
/export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/JDBC40TranslationTest.java:39: 
cannot find symbol
     [javac] symbol  : variable functionParameterUnknown
     [javac] location: interface java.sql.DatabaseMetaData
     [javac]         assertEquals(DatabaseMetaData.functionParameterUnknown,
     [javac]                                      ^
     [javac] 
/export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/JDBC40TranslationTest.java:44: 
cannot find symbol
     [javac] symbol  : variable functionParameterIn
     [javac] location: interface java.sql.DatabaseMetaData
     [javac]         assertEquals(DatabaseMetaData.functionParameterIn,
     [javac]                                      ^
     [javac] 
/export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/JDBC40TranslationTest.java:49: 
cannot find symbol
     [javac] symbol  : variable functionParameterInOut
     [javac] location: interface java.sql.DatabaseMetaData
     [javac]         assertEquals(DatabaseMetaData.functionParameterInOut,
     [javac]                                      ^
     [javac] 
/export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:99: 
cannot find symbol
     [javac] symbol  : variable functionParameterUnknown
     [javac] location: interface java.sql.DatabaseMetaData
     [javac] 
DatabaseMetaData.functionParameterUnknown));
     [javac]    ^
     [javac] 
/export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:101: 
cannot find symbol
     [javac] symbol  : variable functionParameterIn
     [javac] location: interface java.sql.DatabaseMetaData
     [javac] 
DatabaseMetaData.functionParameterIn));
     [javac]    ^
     [javac] 
/export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:103: 
cannot find symbol
     [javac] symbol  : variable functionParameterInOut
     [javac] location: interface java.sql.DatabaseMetaData
     [javac] 
DatabaseMetaData.functionParameterInOut));
     [javac]    ^
     [javac] 
/export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:105: 
cannot find symbol
     [javac] symbol  : variable functionParameterOut
     [javac] location: interface java.sql.DatabaseMetaData
     [javac] 
DatabaseMetaData.functionParameterOut));
     [javac]    ^
     [javac] 
/export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:157: 
cannot find symbol
     [javac] symbol  : method 
getFunctionParameters(<nulltype>,<nulltype>,java.lang.String,<nulltype>)
     [javac] location: interface java.sql.DatabaseMetaData
     [javac] 
dumpRS(met.getFunctionParameters(null,null,"DUMMY%",null));
     [javac]                       ^
     [javac] 
/export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:160: 
cannot find symbol
     [javac] symbol  : method 
getFunctionParameters(<nulltype>,<nulltype>,java.lang.String,java.lang.String)
     [javac] location: interface java.sql.DatabaseMetaData
     [javac] 
dumpRS(met.getFunctionParameters(null,null,"DUMMY%",""));
     [javac]                       ^
     [javac] Note: Some input files use unchecked or unsafe operations.
     [javac] Note: Recompile with -Xlint:unchecked for details.
     [javac] 9 errors

BUILD FAILED
/export/home/dv136566/derby/patch/trunk/build.xml:336: The following 
error occurred while executing this line:
/export/home/dv136566/derby/patch/trunk/java/testing/build.xml:75: The 
following error occurred while executing this line:
/export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/build.xml:64: 
Compile failed; see the compiler error output for details.


Re: JDBC4 build failing for me

Posted by Knut Anders Hatlen <Kn...@Sun.COM>.
David Van Couvering <Da...@Sun.COM> writes:

> Well, that doesn't fully make sense, since nobody else seems to be
> complaining about this.  Wouldn't we get build failures in the
> regression nightlies and other JDBC4 developers if this were a global
> issue?  I've had this problem for two days now...

Well, that's strange since Rick checked in a fix 11 days ago. Looking
at the error messages, it seems like your source tree is not up to
date. Have you considered 'svn up' followed by 'ant testing' and 'ant
buildjars'? :)

-- 
Knut Anders

Re: JDBC4 build failing for me

Posted by David Van Couvering <Da...@Sun.COM>.
Well, that doesn't fully make sense, since nobody else seems to be 
complaining about this.  Wouldn't we get build failures in the 
regression nightlies and other JDBC4 developers if this were a global 
issue?  I've had this problem for two days now...

David

Lance J. Andersen wrote:
> Hi David,
> 
> There were changes in this area to the DatabaseMetaData and it looks 
> like this test might not have caught up to it.
> 
> -lance
> 
> David Van Couvering wrote:
>> I am running with the latest drop from the jdk 1.6 site, and I have 
>> the latest stuff from the trunk, and I am getting the following 
>> errors. These appear to be members of java.sql.DatabaseMetaData.  I am 
>> hoping someone familiar with this area of the code can provide some 
>> quick guidance...
>>
>> Thanks,
>>
>> David
>>
>> ===
>>
>>     [javac] 
>> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/JDBC40TranslationTest.java:39: 
>> cannot find symbol
>>     [javac] symbol  : variable functionParameterUnknown
>>     [javac] location: interface java.sql.DatabaseMetaData
>>     [javac]         
>> assertEquals(DatabaseMetaData.functionParameterUnknown,
>>     [javac]                                      ^
>>     [javac] 
>> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/JDBC40TranslationTest.java:44: 
>> cannot find symbol
>>     [javac] symbol  : variable functionParameterIn
>>     [javac] location: interface java.sql.DatabaseMetaData
>>     [javac]         assertEquals(DatabaseMetaData.functionParameterIn,
>>     [javac]                                      ^
>>     [javac] 
>> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/JDBC40TranslationTest.java:49: 
>> cannot find symbol
>>     [javac] symbol  : variable functionParameterInOut
>>     [javac] location: interface java.sql.DatabaseMetaData
>>     [javac]         assertEquals(DatabaseMetaData.functionParameterInOut,
>>     [javac]                                      ^
>>     [javac] 
>> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:99: 
>> cannot find symbol
>>     [javac] symbol  : variable functionParameterUnknown
>>     [javac] location: interface java.sql.DatabaseMetaData
>>     [javac] DatabaseMetaData.functionParameterUnknown));
>>     [javac]    ^
>>     [javac] 
>> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:101: 
>> cannot find symbol
>>     [javac] symbol  : variable functionParameterIn
>>     [javac] location: interface java.sql.DatabaseMetaData
>>     [javac] DatabaseMetaData.functionParameterIn));
>>     [javac]    ^
>>     [javac] 
>> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:103: 
>> cannot find symbol
>>     [javac] symbol  : variable functionParameterInOut
>>     [javac] location: interface java.sql.DatabaseMetaData
>>     [javac] DatabaseMetaData.functionParameterInOut));
>>     [javac]    ^
>>     [javac] 
>> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:105: 
>> cannot find symbol
>>     [javac] symbol  : variable functionParameterOut
>>     [javac] location: interface java.sql.DatabaseMetaData
>>     [javac] DatabaseMetaData.functionParameterOut));
>>     [javac]    ^
>>     [javac] 
>> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:157: 
>> cannot find symbol
>>     [javac] symbol  : method 
>> getFunctionParameters(<nulltype>,<nulltype>,java.lang.String,<nulltype>)
>>     [javac] location: interface java.sql.DatabaseMetaData
>>     [javac] dumpRS(met.getFunctionParameters(null,null,"DUMMY%",null));
>>     [javac]                       ^
>>     [javac] 
>> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:160: 
>> cannot find symbol
>>     [javac] symbol  : method 
>> getFunctionParameters(<nulltype>,<nulltype>,java.lang.String,java.lang.String) 
>>
>>     [javac] location: interface java.sql.DatabaseMetaData
>>     [javac] dumpRS(met.getFunctionParameters(null,null,"DUMMY%",""));
>>     [javac]                       ^
>>     [javac] Note: Some input files use unchecked or unsafe operations.
>>     [javac] Note: Recompile with -Xlint:unchecked for details.
>>     [javac] 9 errors
>>
>> BUILD FAILED
>> /export/home/dv136566/derby/patch/trunk/build.xml:336: The following 
>> error occurred while executing this line:
>> /export/home/dv136566/derby/patch/trunk/java/testing/build.xml:75: The 
>> following error occurred while executing this line:
>> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/build.xml:64: 
>> Compile failed; see the compiler error output for details.
>>

Re: JDBC4 build failing for me

Posted by "Lance J. Andersen" <La...@Sun.COM>.
These changes were put back a while ago and rick made an integration for 
this into the derby codeline.

There will be one more change to Types.java i believe in order to 
prevent a collision for a large number of users of a specific database 
due to their own types colliding with the JDBC constant values.  This is 
still in works but i expect it for b98 of Java SE 6.

This issue was raised late friday evening and we are still working 
through it.

Daniel John Debrunner wrote:
> Hmmmm, so Rick wrote on 8/11:
>
>   
>> Build 95 should be the last Mustang version which changes JDBC signatures.
>>     
>
> David wrote: (today)
>
>   
>> Java(TM) SE Runtime Environment (build 1.6.0-rc-b96) 
>>     
>
> Lance wrote: (today)
>
>   
>>> There were changes in this area to the DatabaseMetaData and it looks
>>> like this test might not have caught up to it.
>>>       
>
> So, do we have a new target build number for Mustang where it is
> expected (hoped) that the JDBC 4.0 signatures, constants, classes etc.
> do not change?
>
> Dan.
>
>   

Re: JDBC4 build failing for me

Posted by Daniel John Debrunner <dj...@apache.org>.
Hmmmm, so Rick wrote on 8/11:

> Build 95 should be the last Mustang version which changes JDBC signatures.

David wrote: (today)

> Java(TM) SE Runtime Environment (build 1.6.0-rc-b96) 

Lance wrote: (today)

>> There were changes in this area to the DatabaseMetaData and it looks
>> like this test might not have caught up to it.

So, do we have a new target build number for Mustang where it is
expected (hoped) that the JDBC 4.0 signatures, constants, classes etc.
do not change?

Dan.


Re: JDBC4 build failing for me

Posted by "Lance J. Andersen" <La...@Sun.COM>.
Hi David,

There were changes in this area to the DatabaseMetaData and it looks 
like this test might not have caught up to it.

-lance

David Van Couvering wrote:
> I am running with the latest drop from the jdk 1.6 site, and I have 
> the latest stuff from the trunk, and I am getting the following 
> errors. These appear to be members of java.sql.DatabaseMetaData.  I am 
> hoping someone familiar with this area of the code can provide some 
> quick guidance...
>
> Thanks,
>
> David
>
> ===
>
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/JDBC40TranslationTest.java:39: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterUnknown
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac]         
> assertEquals(DatabaseMetaData.functionParameterUnknown,
>     [javac]                                      ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/JDBC40TranslationTest.java:44: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterIn
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac]         assertEquals(DatabaseMetaData.functionParameterIn,
>     [javac]                                      ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/JDBC40TranslationTest.java:49: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterInOut
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac]         assertEquals(DatabaseMetaData.functionParameterInOut,
>     [javac]                                      ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:99: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterUnknown
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] DatabaseMetaData.functionParameterUnknown));
>     [javac]    ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:101: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterIn
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] DatabaseMetaData.functionParameterIn));
>     [javac]    ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:103: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterInOut
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] DatabaseMetaData.functionParameterInOut));
>     [javac]    ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:105: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterOut
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] DatabaseMetaData.functionParameterOut));
>     [javac]    ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:157: 
> cannot find symbol
>     [javac] symbol  : method 
> getFunctionParameters(<nulltype>,<nulltype>,java.lang.String,<nulltype>)
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] dumpRS(met.getFunctionParameters(null,null,"DUMMY%",null));
>     [javac]                       ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:160: 
> cannot find symbol
>     [javac] symbol  : method 
> getFunctionParameters(<nulltype>,<nulltype>,java.lang.String,java.lang.String) 
>
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] dumpRS(met.getFunctionParameters(null,null,"DUMMY%",""));
>     [javac]                       ^
>     [javac] Note: Some input files use unchecked or unsafe operations.
>     [javac] Note: Recompile with -Xlint:unchecked for details.
>     [javac] 9 errors
>
> BUILD FAILED
> /export/home/dv136566/derby/patch/trunk/build.xml:336: The following 
> error occurred while executing this line:
> /export/home/dv136566/derby/patch/trunk/java/testing/build.xml:75: The 
> following error occurred while executing this line:
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/build.xml:64: 
> Compile failed; see the compiler error output for details.
>

Re: JDBC4 build failing for me

Posted by Rick Hillegas <Ri...@Sun.COM>.
Hi David,

With build 95 of the 1.6 beta, various constants in DatabaseMetaData 
changed name (see DERBY-1530). The constants named functionParameter* 
changed name to functionColumn*. From this build output, it appears that 
you have not synced up to the state of the mainline after DERBY-1530 was 
applied (subversion revision 430815).

Hope this helps,
-Rick

David Van Couvering wrote:

> I am running with the latest drop from the jdk 1.6 site, and I have 
> the latest stuff from the trunk, and I am getting the following 
> errors. These appear to be members of java.sql.DatabaseMetaData.  I am 
> hoping someone familiar with this area of the code can provide some 
> quick guidance...
>
> Thanks,
>
> David
>
> ===
>
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/JDBC40TranslationTest.java:39: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterUnknown
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac]         
> assertEquals(DatabaseMetaData.functionParameterUnknown,
>     [javac]                                      ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/JDBC40TranslationTest.java:44: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterIn
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac]         assertEquals(DatabaseMetaData.functionParameterIn,
>     [javac]                                      ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/JDBC40TranslationTest.java:49: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterInOut
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac]         assertEquals(DatabaseMetaData.functionParameterInOut,
>     [javac]                                      ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:99: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterUnknown
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] DatabaseMetaData.functionParameterUnknown));
>     [javac]    ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:101: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterIn
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] DatabaseMetaData.functionParameterIn));
>     [javac]    ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:103: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterInOut
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] DatabaseMetaData.functionParameterInOut));
>     [javac]    ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:105: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterOut
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] DatabaseMetaData.functionParameterOut));
>     [javac]    ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:157: 
> cannot find symbol
>     [javac] symbol  : method 
> getFunctionParameters(<nulltype>,<nulltype>,java.lang.String,<nulltype>)
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] dumpRS(met.getFunctionParameters(null,null,"DUMMY%",null));
>     [javac]                       ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:160: 
> cannot find symbol
>     [javac] symbol  : method 
> getFunctionParameters(<nulltype>,<nulltype>,java.lang.String,java.lang.String) 
>
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] dumpRS(met.getFunctionParameters(null,null,"DUMMY%",""));
>     [javac]                       ^
>     [javac] Note: Some input files use unchecked or unsafe operations.
>     [javac] Note: Recompile with -Xlint:unchecked for details.
>     [javac] 9 errors
>
> BUILD FAILED
> /export/home/dv136566/derby/patch/trunk/build.xml:336: The following 
> error occurred while executing this line:
> /export/home/dv136566/derby/patch/trunk/java/testing/build.xml:75: The 
> following error occurred while executing this line:
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/build.xml:64: 
> Compile failed; see the compiler error output for details.
>


Re: JDBC4 build failing for me

Posted by David Van Couvering <Da...@Sun.COM>.
I just double-checked, and in ~/ant.properties I have

jdk16=/usr/jdk/jdk1.6.0

and then:

bash-3.00$ /usr/jdk/jdk1.6.0/bin/java -version
java version "1.6.0-rc"
Java(TM) SE Runtime Environment (build 1.6.0-rc-b96)
Java HotSpot(TM) Client VM (build 1.6.0-rc-b96, mixed mode, sharing)

Which is the latest build of JDK 1.6...

David

David Van Couvering wrote:
> I am running with the latest drop from the jdk 1.6 site, and I have the 
> latest stuff from the trunk, and I am getting the following errors. 
> These appear to be members of java.sql.DatabaseMetaData.  I am hoping 
> someone familiar with this area of the code can provide some quick 
> guidance...
> 
> Thanks,
> 
> David
> 
> ===
> 
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/JDBC40TranslationTest.java:39: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterUnknown
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac]         assertEquals(DatabaseMetaData.functionParameterUnknown,
>     [javac]                                      ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/JDBC40TranslationTest.java:44: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterIn
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac]         assertEquals(DatabaseMetaData.functionParameterIn,
>     [javac]                                      ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/JDBC40TranslationTest.java:49: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterInOut
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac]         assertEquals(DatabaseMetaData.functionParameterInOut,
>     [javac]                                      ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:99: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterUnknown
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] DatabaseMetaData.functionParameterUnknown));
>     [javac]    ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:101: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterIn
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] DatabaseMetaData.functionParameterIn));
>     [javac]    ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:103: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterInOut
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] DatabaseMetaData.functionParameterInOut));
>     [javac]    ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:105: 
> cannot find symbol
>     [javac] symbol  : variable functionParameterOut
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] DatabaseMetaData.functionParameterOut));
>     [javac]    ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:157: 
> cannot find symbol
>     [javac] symbol  : method 
> getFunctionParameters(<nulltype>,<nulltype>,java.lang.String,<nulltype>)
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] dumpRS(met.getFunctionParameters(null,null,"DUMMY%",null));
>     [javac]                       ^
>     [javac] 
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/TestDbMetaData.java:160: 
> cannot find symbol
>     [javac] symbol  : method 
> getFunctionParameters(<nulltype>,<nulltype>,java.lang.String,java.lang.String) 
> 
>     [javac] location: interface java.sql.DatabaseMetaData
>     [javac] dumpRS(met.getFunctionParameters(null,null,"DUMMY%",""));
>     [javac]                       ^
>     [javac] Note: Some input files use unchecked or unsafe operations.
>     [javac] Note: Recompile with -Xlint:unchecked for details.
>     [javac] 9 errors
> 
> BUILD FAILED
> /export/home/dv136566/derby/patch/trunk/build.xml:336: The following 
> error occurred while executing this line:
> /export/home/dv136566/derby/patch/trunk/java/testing/build.xml:75: The 
> following error occurred while executing this line:
> /export/home/dv136566/derby/patch/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/build.xml:64: 
> Compile failed; see the compiler error output for details.
>