Github user paul-rogers commented on a diff in the pull request:

    https://github.com/apache/drill/pull/729#discussion_r102867347
  
    --- Diff: 
exec/java-exec/src/main/java/org/apache/drill/exec/ops/QueryContext.java ---
    @@ -283,4 +288,22 @@ public void close() throws Exception {
           closed = true;
         }
       }
    +
    +  /**
    +  * @param stmtType : Sets the type {@link SqlStatementType} of the 
statement e.g. CTAS, ANALYZE
    +  */
    +  public void setSQLStatementType(SqlStatementType stmtType) {
    +    if (this.stmtType == null) {
    +      this.stmtType = stmtType;
    +    } else {
    +      throw new UnsupportedOperationException("SQL Statement type is 
already set");
    +    }
    +  }
    +
    +  /**
    +   * @return Get the type {@link SqlStatementType} of the statement e.g. 
CTAS, ANALYZE
    +   */
    +  public SqlStatementType getSQLStatementType() {
    +    return this.stmtType;
    --- End diff --
    
    No need for "this."


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