Interface SupportsPushDownOffset

All Superinterfaces:
ScanBuilder

@Evolving public interface SupportsPushDownOffset extends ScanBuilder
A mix-in interface for ScanBuilder. Data sources can implement this interface to push down OFFSET. We can push down OFFSET with many other operations if they follow the operator order we defined in ScanBuilder's class doc.
Since:
3.4.0
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    pushOffset(int offset)
    Pushes down OFFSET to the data source.

    Methods inherited from interface org.apache.spark.sql.connector.read.ScanBuilder

    build
  • Method Details

    • pushOffset

      boolean pushOffset(int offset)
      Pushes down OFFSET to the data source.