Skip to content

Commit

Permalink
dbeaver/pro#3384 Make AbstractJdbcConnection.getSchema throwable
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Gagarkin authored and Ivan Gagarkin committed Oct 16, 2024
1 parent 38e3a2a commit c6682c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public void setSchema(String schema) throws SQLException {
}

@Override
public String getSchema() {
public String getSchema() throws SQLException {
return null;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public abstract class AbstractJdbcStatement<CON extends AbstractJdbcConnection>
protected int fetchSize;
protected long maxRows;
protected String cursorName;
private int maxFieldSize;
protected int maxFieldSize;

public AbstractJdbcStatement(@NotNull CON connection) throws SQLException {
this.connection = connection;
Expand Down

0 comments on commit c6682c8

Please sign in to comment.