Github user jihoonson commented on a diff in the pull request:
https://github.com/apache/tajo/pull/662#discussion_r35951917
--- Diff: tajo-client/src/main/java/org/apache/tajo/client/QueryClient.java
---
@@ -108,17 +111,17 @@
TajoMemoryResultSet fetchNextQueryResult(final QueryId queryId, final
int fetchRowNum) throws SQLException;
- boolean updateQuery(final String sql) throws SQLException;
+ boolean updateQuery(final String sql) throws TajoException;
- boolean updateQueryWithJson(final String json) throws SQLException;
+ boolean updateQueryWithJson(final String json) throws TajoException;
List<ClientProtos.BriefQueryInfo> getRunningQueryList() throws
SQLException;
--- End diff --
Some of other methods in this class still throw ```SQLException```. Is it
good or do you leave them for future changes?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---