aboutsummaryrefslogtreecommitdiff
path: root/sql/core
diff options
context:
space:
mode:
authorproflin <proflin.me@gmail.com>2016-01-19 00:15:43 -0800
committerReynold Xin <rxin@databricks.com>2016-01-19 00:15:43 -0800
commitc00744e60f77edb238aff1e30b450dca65451e91 (patch)
treeef5c8411ccfd41cd442fb95494673eaaa194492d /sql/core
parent453dae56716bc254bf5022fddc9b8327c9b1a49f (diff)
downloadspark-c00744e60f77edb238aff1e30b450dca65451e91.tar.gz
spark-c00744e60f77edb238aff1e30b450dca65451e91.tar.bz2
spark-c00744e60f77edb238aff1e30b450dca65451e91.zip
[SQL][MINOR] Fix one little mismatched comment according to the codes in interface.scala
Author: proflin <proflin.me@gmail.com> Closes #10824 from proflin/master.
Diffstat (limited to 'sql/core')
-rw-r--r--sql/core/src/main/scala/org/apache/spark/sql/sources/interfaces.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/sources/interfaces.scala b/sql/core/src/main/scala/org/apache/spark/sql/sources/interfaces.scala
index 7800776fa1..8911ad370a 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/sources/interfaces.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/sources/interfaces.scala
@@ -426,7 +426,7 @@ abstract class OutputWriter {
* [[Row]] objects. In addition, when reading from Hive style partitioned tables stored in file
* systems, it's able to discover partitioning information from the paths of input directories, and
* perform partition pruning before start reading the data. Subclasses of [[HadoopFsRelation()]]
- * must override one of the three `buildScan` methods to implement the read path.
+ * must override one of the four `buildScan` methods to implement the read path.
*
* For the write path, it provides the ability to write to both non-partitioned and partitioned
* tables. Directory layout of the partitioned tables is compatible with Hive.