Hoeze commented on issue #5512:
URL: https://github.com/apache/iceberg/issues/5512#issuecomment-1274494097
@dennishuo I am not sure if I understand your suggestion.
Isn't your code snippet equal to mine?
```python
# yours
spark.read.format("iceberg").load(iceberg_path).createOrReplaceTempView("my_view")
df1 = spark.table("my_view")
# mine
df2 = spark.read.format("iceberg").load(iceberg_path)
```
Now, if `df1` == `df2` it would be absolutely sufficient.
As I said, I just want to send an iceberg store to people and let them load
it in PySpark in a single line of code.
--
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]