Skip to content

Commit 0b46148

Browse files
committed
fixed appname for python sql example
1 parent 8f67b5b commit 0b46148

File tree

1 file changed

+1
-1
lines changed
  • examples/src/main/python

1 file changed

+1
-1
lines changed

examples/src/main/python/sql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
# Register this SchemaRDD as a table.
4444
people.registerAsTable("people")
4545

46-
# SQL statements can be run by using the sql methods provided by sqlContext.
46+
# SQL statements can be run by using the sql methods provided by sqlContext
4747
teenagers = sqlContext.sql("SELECT name FROM people WHERE age >= 13 AND age <= 19")
4848

4949
for each in teenagers.collect():

0 commit comments

Comments
 (0)