huaxingao commented on code in PR #36152:
URL: https://github.com/apache/spark/pull/36152#discussion_r847963308


##########
docs/sql-data-sources-jdbc.md:
##########
@@ -250,7 +250,7 @@ logging into the data sources.
     <td><code>pushDownLimit</code></td>
     <td><code>false</code></td>
     <td>
-     The option to enable or disable LIMIT push-down into V2 JDBC data source. 
The default value is false, in which case Spark does not push down LIMIT to the 
JDBC data source. Otherwise, if value sets to true, LIMIT is pushed down to the 
JDBC data source. SPARK still applies LIMIT on the result from data source even 
if LIMIT is pushed down.
+     The option to enable or disable LIMIT push-down into V2 JDBC data source. 
If LIMIT with SORT, the option to enable or disable LIMIT with SORT push-down 
into V2 JDBC data source. The default value is false, in which case Spark does 
not push down LIMIT or LIMIT with SORT to the JDBC data source. Otherwise, if 
sets to true, LIMIT or LIMIT with SORT is pushed down to the JDBC data source. 
If <code>numPartitions</code> greater than 1, SPARK still applies LIMIT or 
LIMIT with SORT on the result from data source even if LIMIT or LIMIT with SORT 
is pushed down. Otherwise, if LIMIT or LIMIT with SORT is pushed down and 
<code>numPartitions</code> equals to 1, SPARK will not apply LIMIT or LIMIT 
with SORT on the result from data source.

Review Comment:
   `a.k.k the Top N operator` you mean `a.k.a. the Top N operator`?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to