aboutsummaryrefslogtreecommitdiff
path: root/docs/sparkr.md
diff options
context:
space:
mode:
authorfelixcheung <felixcheung_m@hotmail.com>2016-01-05 08:39:58 +0530
committerShivaram Venkataraman <shivaram@cs.berkeley.edu>2016-01-05 08:39:58 +0530
commit8896ec9f02a6747917f3ae42a517ff0e3742eaf6 (patch)
tree3961d39e2b6053c9fff3797d3fe975f83e0e0fa0 /docs/sparkr.md
parentb1a771231e20df157fb3e780287390a883c0cc6f (diff)
downloadspark-8896ec9f02a6747917f3ae42a517ff0e3742eaf6.tar.gz
spark-8896ec9f02a6747917f3ae42a517ff0e3742eaf6.tar.bz2
spark-8896ec9f02a6747917f3ae42a517ff0e3742eaf6.zip
[SPARKR][DOC] minor doc update for version in migration guide
checked that the change is in Spark 1.6.0. shivaram Author: felixcheung <felixcheung_m@hotmail.com> Closes #10574 from felixcheung/rwritemodedoc.
Diffstat (limited to 'docs/sparkr.md')
-rw-r--r--docs/sparkr.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/sparkr.md b/docs/sparkr.md
index 9ddd2eda3f..ea81532c61 100644
--- a/docs/sparkr.md
+++ b/docs/sparkr.md
@@ -385,12 +385,12 @@ The following functions are masked by the SparkR package:
</table>
Since part of SparkR is modeled on the `dplyr` package, certain functions in SparkR share the same names with those in `dplyr`. Depending on the load order of the two packages, some functions from the package loaded first are masked by those in the package loaded after. In such case, prefix such calls with the package name, for instance, `SparkR::cume_dist(x)` or `dplyr::cume_dist(x)`.
-
+
You can inspect the search path in R with [`search()`](https://stat.ethz.ch/R-manual/R-devel/library/base/html/search.html)
# Migration Guide
-## Upgrading From SparkR 1.6 to 1.7
+## Upgrading From SparkR 1.5.x to 1.6
- - Until Spark 1.6, the default mode for writes was `append`. It was changed in Spark 1.7 to `error` to match the Scala API.
+ - Before Spark 1.6, the default mode for writes was `append`. It was changed in Spark 1.6.0 to `error` to match the Scala API.