@Evolving public interface SupportsPushDownLimit extends ScanBuilder
ScanBuilder. Data sources can implement this interface to
 push down LIMIT. We can push down LIMIT with many other operations if they follow the
 operator order we defined in ScanBuilder's class doc.| Modifier and Type | Method and Description | 
|---|---|
| default boolean | isPartiallyPushed()Whether the LIMIT is partially pushed or not. | 
| boolean | pushLimit(int limit)Pushes down LIMIT to the data source. | 
buildboolean pushLimit(int limit)
default boolean isPartiallyPushed()
pushLimit(int) returns true.