Skip to content

Commit

Permalink
Resolution for bug #1325650 - Index failure with Oracle External Tables
Browse files Browse the repository at this point in the history
  • Loading branch information
johncurrier committed Oct 14, 2005
1 parent 40ab4cd commit a677509
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/net/sourceforge/schemaspy/model/Table.java
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,8 @@ private void initIndexes(Database db, DatabaseMetaData meta, Properties properti

addIndex(rs);
}
} catch (SQLException exc) {
System.err.println("Unable to extract index info for table " + name + ": " + exc);
} finally {
if (rs != null)
rs.close();
Expand Down

0 comments on commit a677509

Please sign in to comment.