[
https://issues.apache.org/jira/browse/TAJO-1670?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14632667#comment-14632667
]
ASF GitHub Bot commented on TAJO-1670:
--------------------------------------
Github user jihoonson commented on a diff in the pull request:
https://github.com/apache/tajo/pull/621#discussion_r34954069
--- Diff:
tajo-catalog/tajo-catalog-client/src/main/proto/CatalogProtocol.proto ---
@@ -24,53 +24,128 @@ option java_generate_equals_and_hash = true;
import "CatalogProtos.proto";
import "PrimitiveProtos.proto";
+message GetTablespacesResponse {
+ required ReturnState state = 1;
+ repeated TablespaceProto tablespace = 2;
+}
+
+message GetTablespaceResponse {
+ required ReturnState state = 1;
+ optional TablespaceProto tablespace = 2;
+}
+
+message GetDatabasesResponse {
+ required ReturnState state = 1;
+ repeated DatabaseProto database = 2;
+}
+
+message TableDescResponse {
+ required ReturnState state = 1;
+ optional TableDescProto table = 2;
+}
+
+message GetTablesResponse {
+ required ReturnState state = 1;
+ repeated TableDescriptorProto table = 2;
+}
+
+message FunctionDescResponse {
--- End diff --
Should have the ```Get``` prefix.
> Refactor client errors and exceptions
> -------------------------------------
>
> Key: TAJO-1670
> URL: https://issues.apache.org/jira/browse/TAJO-1670
> Project: Tajo
> Issue Type: Sub-task
> Components: Java Client, TajoMaster, Worker
> Reporter: Hyunsik Choi
> Assignee: Hyunsik Choi
> Fix For: 0.11.0
>
>
> The main objective is to refactor the error and exception system in client
> side and its connected parts like TajoMaster.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)