Skip to content

Commit

Permalink
Query catalog needs to support SQL scripts #206
Browse files Browse the repository at this point in the history
  • Loading branch information
aeberhart committed Aug 30, 2022
1 parent a214b6b commit b2fd0da
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ public AbstractTableName(String query) throws SQLException {
} catch (Exception ignore) {
}
} catch (JSQLParserException e) {
throw new SQLException(e);
// ignore exception since SQL might work on the DB (parser does not cover all dialects)
return;
}
}
}
Expand Down

0 comments on commit b2fd0da

Please sign in to comment.