Repository: spark Updated Branches: refs/heads/branch-2.0 a1d04cc03 -> c86d29b2e
[MINOR][SPARKR] update sparkR DataFrame.R comment ## What changes were proposed in this pull request? update sparkR DataFrame.R comment SQLContext ==> SparkSession ## How was this patch tested? N/A Author: WeichenXu <[email protected]> Closes #13946 from WeichenXu123/sparkR_comment_update_sparkSession. (cherry picked from commit d59ba8e30751bbf91d49f5530b8242a12bbfb569) Signed-off-by: Shivaram Venkataraman <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/c86d29b2 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/c86d29b2 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/c86d29b2 Branch: refs/heads/branch-2.0 Commit: c86d29b2e6bfda05124c20ba3c6db9275c24faa8 Parents: a1d04cc Author: WeichenXu <[email protected]> Authored: Tue Jun 28 12:12:20 2016 -0700 Committer: Shivaram Venkataraman <[email protected]> Committed: Tue Jun 28 12:12:28 2016 -0700 ---------------------------------------------------------------------- R/pkg/R/DataFrame.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/c86d29b2/R/pkg/R/DataFrame.R ---------------------------------------------------------------------- diff --git a/R/pkg/R/DataFrame.R b/R/pkg/R/DataFrame.R index f856979..567758d 100644 --- a/R/pkg/R/DataFrame.R +++ b/R/pkg/R/DataFrame.R @@ -466,7 +466,7 @@ setMethod("createOrReplaceTempView", #' (Deprecated) Register Temporary Table #' -#' Registers a SparkDataFrame as a Temporary Table in the SQLContext +#' Registers a SparkDataFrame as a Temporary Table in the SparkSession #' @param x A SparkDataFrame #' @param tableName A character vector containing the name of the table #' @@ -493,7 +493,7 @@ setMethod("registerTempTable", #' insertInto #' -#' Insert the contents of a SparkDataFrame into a table registered in the current SQL Context. +#' Insert the contents of a SparkDataFrame into a table registered in the current SparkSession. #' #' @param x A SparkDataFrame #' @param tableName A character vector containing the name of the table --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
