aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorWeiqing Yang <yangweiqing001@gmail.com>2016-10-18 13:38:14 -0700
committerReynold Xin <rxin@databricks.com>2016-10-18 13:38:14 -0700
commit20dd11096cfda51e47b9dbe3b715a12ccbb4ce1d (patch)
treeed45a82ad9c33d7b7f82e026d9d39d4cd8b56944 /docs
parentbfe7885aee2f406c1bbde08e30809a0b4bb070d2 (diff)
downloadspark-20dd11096cfda51e47b9dbe3b715a12ccbb4ce1d.tar.gz
spark-20dd11096cfda51e47b9dbe3b715a12ccbb4ce1d.tar.bz2
spark-20dd11096cfda51e47b9dbe3b715a12ccbb4ce1d.zip
[MINOR][DOC] Add more built-in sources in sql-programming-guide.md
## What changes were proposed in this pull request? Add more built-in sources in sql-programming-guide.md. ## How was this patch tested? Manually. Author: Weiqing Yang <yangweiqing001@gmail.com> Closes #15522 from weiqingy/dsDoc.
Diffstat (limited to 'docs')
-rw-r--r--docs/sql-programming-guide.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/sql-programming-guide.md b/docs/sql-programming-guide.md
index dcc828cc69..3f1b73a830 100644
--- a/docs/sql-programming-guide.md
+++ b/docs/sql-programming-guide.md
@@ -422,8 +422,8 @@ In the simplest form, the default data source (`parquet` unless otherwise config
You can also manually specify the data source that will be used along with any extra options
that you would like to pass to the data source. Data sources are specified by their fully qualified
name (i.e., `org.apache.spark.sql.parquet`), but for built-in sources you can also use their short
-names (`json`, `parquet`, `jdbc`). DataFrames loaded from any data source type can be converted into other types
-using this syntax.
+names (`json`, `parquet`, `jdbc`, `orc`, `libsvm`, `csv`, `text`). DataFrames loaded from any data
+source type can be converted into other types using this syntax.
<div class="codetabs">
<div data-lang="scala" markdown="1">