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

    https://github.com/apache/spark/pull/17581#discussion_r111080132
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala ---
    @@ -359,6 +359,17 @@ object SQLConf {
           .booleanConf
           .createWithDefault(false)
     
    +  val THRIFTSERVER_RESULT_LIMIT =
    +    buildConf("spark.sql.thriftserver.retainedResults")
    +      .internal()
    +      .doc("The maximum number of rows that can be returned by Thrift 
Server when running " +
    +        "a query without a Limit clause. The query could produce 
non-deterministic results " +
    +        "when the query result is not sorted. This parameter is omitted 
when a Limit " +
    +        "clause is part of the query or the input is not a positive 
integer.")
    +      .intConf
    +      .checkValue(limit => limit >= 0, "The number of sql results is not 
less than 0.")
    --- End diff --
    
    I think we can remove this line now. 


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

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to