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

    https://github.com/apache/drill/pull/532#discussion_r68863584
  
    --- 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 --
    
    Since the client connection is still alive, the query would continue to 
execute on the server and presumably still send back results. Where are the 
results consumed if an interrupt occurs here?



---
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