Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update SchemaRDD.scala #619

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class SchemaRDD(
new SchemaRDD(sqlContext, Project(exprs, logicalPlan))

/**
* Filters the ouput, only returning those rows where `condition` evaluates to true.
* Filters the output, only returning those rows where `condition` evaluates to true.
*
* {{{
* schemaRDD.where('a === 'b)
Expand All @@ -151,9 +151,9 @@ class SchemaRDD(
*
* @param otherPlan the [[SchemaRDD]] that should be joined with this one.
* @param joinType One of `Inner`, `LeftOuter`, `RightOuter`, or `FullOuter`. Defaults to `Inner.`
* @param on An optional condition for the join operation. This is equivilent to the `ON`
* @param on An optional condition for the join operation. This is equivalent to the `ON`
* clause in standard SQL. In the case of `Inner` joins, specifying a
* `condition` is equivilent to adding `where` clauses after the `join`.
* `condition` is equivalent to adding `where` clauses after the `join`.
*
* @group Query
*/
Expand Down Expand Up @@ -195,7 +195,7 @@ class SchemaRDD(

/**
* Applies a qualifier to the attributes of this relation. Can be used to disambiguate attributes
* with the same name, for example, when peforming self-joins.
* with the same name, for example, when performing self-joins.
*
* {{{
* val x = schemaRDD.where('a === 1).as('x)
Expand Down