Skip to content

Commit

Permalink
[SPARK-4658][SQL] Code documentation issue in DDL of datasource API
Browse files Browse the repository at this point in the history
Author: ravipesala <[email protected]>

Closes apache#3516 from ravipesala/ddl_doc and squashes the following commits:

d101fdf [ravipesala] Style issues fixed
d2238cd [ravipesala] Corrected documentation
  • Loading branch information
ravipesala authored and marmbrus committed Dec 1, 2014
1 parent 6a9ff19 commit bc35381
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ import scala.collection.JavaConversions._

/**
* Allows creation of parquet based tables using the syntax
* `CREATE TABLE ... USING org.apache.spark.sql.parquet`. Currently the only option required
* is `path`, which should be the location of a collection of, optionally partitioned,
* `CREATE TEMPORARY TABLE ... USING org.apache.spark.sql.parquet`. Currently the only option
* required is `path`, which should be the location of a collection of, optionally partitioned,
* parquet files.
*/
class DefaultSource extends RelationProvider {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private[sql] class DDLParser extends StandardTokenParsers with PackratParsers wi
protected lazy val ddl: Parser[LogicalPlan] = createTable

/**
* CREATE FOREIGN TEMPORARY TABLE avroTable
* CREATE TEMPORARY TABLE avroTable
* USING org.apache.spark.sql.avro
* OPTIONS (path "../hive/src/test/resources/data/files/episodes.avro")
*/
Expand Down

0 comments on commit bc35381

Please sign in to comment.