Skip to content

Commit

Permalink
feat(flink-connection): support isValid for tableau
Browse files Browse the repository at this point in the history
  • Loading branch information
blaskovicz committed May 24, 2024
1 parent 0737220 commit 7026b60
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,13 @@ public Statement createStatement() throws SQLException {
return statement;
}

// TODO We currently do not support this, but we can't throw a SQLException here because we want
// to support jdbc tools such as Tableau.
@Override
public boolean isValid(int timeout) throws SQLException {
return true;
}

// TODO We currently do not support this, but we can't throw a SQLException here because we want
// to support jdbc tools such as beeline and sqlline.
@Override
Expand Down

0 comments on commit 7026b60

Please sign in to comment.