Amrish Lal created HUDI-6685:
--------------------------------
Summary: Fix code typo in quick start guide under pyspark "Insert
Overwrite" section.
Key: HUDI-6685
URL: https://issues.apache.org/jira/browse/HUDI-6685
Project: Apache Hudi
Issue Type: Bug
Reporter: Amrish Lal
CHANGE:
# pyspark
self.spark.read.format("hudi"). \
load(basePath). \
select(["uuid", "partitionpath"]). \
sort(["partitionpath", "uuid"]). \
show(n=100, truncate=False) \
TO:
# pyspark
spark.read.format("hudi"). \
load(basePath). \
select(["uuid", "partitionpath"]). \
sort(["partitionpath", "uuid"]). \
show(n=100, truncate=False)
--
This message was sent by Atlassian Jira
(v8.20.10#820010)