Github user parthchandra commented on a diff in the pull request:

    https://github.com/apache/drill/pull/532#discussion_r73955782
  
    --- Diff: 
exec/jdbc/src/main/java/org/apache/drill/jdbc/impl/DrillConnectionImpl.java ---
    @@ -362,12 +364,33 @@ public PreparedStatement prepareStatement(String sql, 
int resultSetType,
                                                 int resultSetHoldability) 
throws SQLException {
         throwIfClosed();
         try {
    -      DrillPrepareResult prepareResult = new DrillPrepareResult(sql);
    +      DrillRpcFuture<CreatePreparedStatementResp> respFuture = 
client.createPreparedStatement(sql);
    +
    +      CreatePreparedStatementResp resp;
    +      try {
    +        resp = respFuture.get();
    +      } catch (InterruptedException e) {
    +        // Preserve evidence that the interruption occurred so that code 
higher up
    +        // on the call stack can learn of the interruption and respond to 
it if it
    +        // wants to.
    +        Thread.currentThread().interrupt();
    +
    +        throw new SQLException( "Interrupted", e );
    --- End diff --
    
    By process the message, I wanted to understand who pulls the message off 
the socket and, if there is no listener, discards it. Looks like there is 
always a listener.  


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to