Skip to content

Commit ab83f2e

Browse files
committed
Change tab to space in quickstart.rst.
1 parent dc471ea commit ab83f2e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/source/user_guide/apachespark/quickstart.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ From a Python Environment
160160
zipcode,
161161
CONCAT(latitude,',', longitude) AS lat_long
162162
FROM berlin
163-
"""
163+
"""
164164
).limit(limit)
165165
166166
# Convert the filtered Spark DataFrame into JSON format
@@ -232,13 +232,13 @@ Again, assume you have the following two files written in your current directory
232232
Create a temp view and do some SQL operations
233233
df.createOrReplaceTempView("berlin")
234234
query_result_df = spark.sql(
235-
"""
236-
SELECT
237-
city,
238-
zipcode,
239-
CONCAT(latitude,',', longitude) AS lat_long
240-
FROM berlin
241-
"""
235+
"""
236+
SELECT
237+
city,
238+
zipcode,
239+
CONCAT(latitude,',', longitude) AS lat_long
240+
FROM berlin
241+
"""
242242
).limit(limit)
243243
244244
# Convert the filtered Spark DataFrame into JSON format

0 commit comments

Comments
 (0)