Details
Description
In our JDBC metadata some capabilities are reported not to be supported, while in fact they are. E.g. I see
/** {@inheritDoc} */ @Override public boolean supportsAlterTableWithAddColumn() throws SQLException { return false; } /** {@inheritDoc} */ @Override public boolean supportsAlterTableWithDropColumn() throws SQLException { return false; }
while in fact `ALTER TABLE ADD/DROP COLUMN` are supported.
Need to go through the list of capabilities and correct them.
Attachments
Issue Links
- links to