[EMAIL PROTECTED] wrote:
> But this fails to compile because DataTypeDescriptor.isCharacterType
> and DataTypeDescriptor.isBinaryType are private.
>
> [javac]
> /private/tmp/DERBY/derby-969/java/engine/org/apache/derby/catalog/GetProcedureColumns.java:289:
> isCharacterType(int) has private access in
> org.apache.derby.iapi.types.DataTypeDescriptor
> [javac] if
> (DataTypeDescriptor.isCharacterType(type) ||
> [javac] ^
> [javac]
> /private/tmp/DERBY/derby-969/java/engine/org/apache/derby/catalog/GetProcedureColumns.java:290:
> isBinaryType(int) has private access in
> org.apache.derby.iapi.types.DataTypeDescriptor
> [javac]
> DataTypeDescriptor.isBinaryType(type)) {
>
>
> Is that intentional? Would it be ok to make them more accessible?
probably, though logically these methods belong on TypeId, to match the
other similar methods.
Dan.