Is there a way to read only the delta between 2 versions of deltaLake? specifically in Synapse
I have tried
%%pyspark
import delta
from pyspark.sql.functions import col, asc
df_delta = spark.read.format("delta") \
.option("readChangeFeed", "true") \
.option("startingVersion", 0) \
.option("endingVersion", 1) \
.load("/pathtoDeltaLake")
display(df_delta)
But the above seems to read more than just the delta between 2 versions. (only 1 row was added in version 1)