HHH-7088 - Fix NPE in TableSourceImpl constructor
This commit is contained in:
parent
3eccabb79a
commit
315b06ebda
|
@ -34,7 +34,7 @@ class TableSourceImpl implements TableSource {
|
|||
this.schema = schema;
|
||||
this.catalog = catalog;
|
||||
// for some reason annotations passing in "" sometimes :(
|
||||
this.tableName = tableName.equals( "" ) ? null : tableName;
|
||||
this.tableName = "".equals( tableName ) ? null : tableName;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue