Anyway, I have fixed it and I plan to upload it on a fork in my github account. This bug is not the only one in that class. Makes me think it wasn't quite tested this one. Look at this code for example {{if ( extractionContext.getDefaultCatalog() != null || extractionContext.getDefaultSchema() != null ) { tableInfo = locateTableInNamespace( extractionContext.getJdbcEnvironment().getCurrentCatalog(), extractionContext.getJdbcEnvironment().getCurrentSchema(), tableName ); if ( tableInfo != null ) { return tableInfo; } }}} Can you spot the bug? (checks for getDefaultSchema not null and then uses getCurrentSchema) |