Skip to content

Commit

Permalink
dbeaver/pro#3384 Make AbstractJdbcConnection.getSchema throwable (#46)
Browse files Browse the repository at this point in the history
Co-authored-by: Ivan Gagarkin <[email protected]>
  • Loading branch information
ivgag and Ivan Gagarkin authored Oct 22, 2024
1 parent e082ae7 commit 841d6ed
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 841d6ed

Please sign in to comment.