You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In TypeMetadataResultSetBuilder::buildUDTs, typeNamePattern needs a null-check. Most JDBC drivers support a null typeNamePattern even though the JDBC javadoc does not specifically call out this case.
It is easy enough to use: if (typeNamePattern != null && typeNamePattern.contains(".")) { on line L119.
The text was updated successfully, but these errors were encountered:
In TypeMetadataResultSetBuilder::buildUDTs,
typeNamePattern
needs a null-check. Most JDBC drivers support a nulltypeNamePattern
even though the JDBC javadoc does not specifically call out this case.It is easy enough to use:
if (typeNamePattern != null && typeNamePattern.contains(".")) {
on line L119.The text was updated successfully, but these errors were encountered: