aboutsummaryrefslogtreecommitdiff
path: root/R
diff options
context:
space:
mode:
authorWeichenXu <WeichenXu123@outlook.com>2016-06-28 12:12:20 -0700
committerShivaram Venkataraman <shivaram@cs.berkeley.edu>2016-06-28 12:12:20 -0700
commitd59ba8e30751bbf91d49f5530b8242a12bbfb569 (patch)
tree204e1b4fa64502e2c7b6069c244e958b2cff13f6 /R
parent26252f7064ba852e1bce6d8233a95aeb395f826a (diff)
downloadspark-d59ba8e30751bbf91d49f5530b8242a12bbfb569.tar.gz
spark-d59ba8e30751bbf91d49f5530b8242a12bbfb569.tar.bz2
spark-d59ba8e30751bbf91d49f5530b8242a12bbfb569.zip
[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 <WeichenXu123@outlook.com> Closes #13946 from WeichenXu123/sparkR_comment_update_sparkSession.
Diffstat (limited to 'R')
-rw-r--r--R/pkg/R/DataFrame.R4
1 files changed, 2 insertions, 2 deletions
diff --git a/R/pkg/R/DataFrame.R b/R/pkg/R/DataFrame.R
index 61d47a8c2d..25327be6ef 100644
--- a/R/pkg/R/DataFrame.R
+++ b/R/pkg/R/DataFrame.R
@@ -471,7 +471,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
#'
@@ -498,7 +498,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