SOLR-8631: Throw UnsupportedOperationException for DatabaseMetaDataImpl.getTypeInfo()

This commit is contained in:
jbernste 2016-02-02 13:24:20 -05:00
parent 2419a3873a
commit 70ad8316f4
1 changed files with 1 additions and 1 deletions

View File

@ -700,7 +700,7 @@ class DatabaseMetaDataImpl implements DatabaseMetaData {
@Override
public ResultSet getTypeInfo() throws SQLException {
return null;
throw new UnsupportedOperationException();
}
@Override