lordk911 commented on issue #1463:
URL: https://github.com/apache/iceberg/issues/1463#issuecomment-693747998
**ok , test passed by use load method**:
```
scala> val df = spark.read.format("iceberg").option("snapshot-id",
"7975731372139528551").load("/user/hive/warehouse/ice/icetest")
df: org.apache.spark.sql.DataFrame = [id: bigint, data: string]
scala> df.show(false)
+---+----+
|id |data|
+---+----+
|1 |a |
|2 |b |
|3 |c |
+---+----+
scala> val df = spark.read.format("iceberg").option("snapshot-id",
"4063381308553626534").load("/user/hive/warehouse/ice/icetest")
df: org.apache.spark.sql.DataFrame = [id: bigint, data: string]
scala> df.show(false)
+---+----+
|id |data|
+---+----+
|2 |b |
|3 |c |
+---+----+
```
Thank you !
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]