aboutsummaryrefslogtreecommitdiff
path: root/examples/src/main
diff options
context:
space:
mode:
authorwm624@hotmail.com <wm624@hotmail.com>2016-08-20 07:00:51 -0700
committerFelix Cheung <felixcheung@apache.org>2016-08-20 07:00:51 -0700
commit3e5fdeb3fb084cc9d25ce2f3f8cbf07a0aa2c573 (patch)
tree1fb157ecde7e4656f7cef4484265ccc8b383b553 /examples/src/main
parent01401e965b58f7e8ab615764a452d7d18f1d4bf0 (diff)
downloadspark-3e5fdeb3fb084cc9d25ce2f3f8cbf07a0aa2c573.tar.gz
spark-3e5fdeb3fb084cc9d25ce2f3f8cbf07a0aa2c573.tar.bz2
spark-3e5fdeb3fb084cc9d25ce2f3f8cbf07a0aa2c573.zip
[SPARKR][EXAMPLE] change example APP name
## What changes were proposed in this pull request? (Please fill in changes proposed in this fix) For R SQL example, appname is "MyApp". While examples in scala, Java and python, the appName is "x Spark SQL basic example". I made the R example consistent with other examples. ## How was this patch tested? (Please explain how this patch was tested. E.g. unit tests, integration tests, manual tests) Manual test (If this patch involves UI changes, please attach a screenshot; otherwise, remove this) Author: wm624@hotmail.com <wm624@hotmail.com> Closes #14703 from wangmiao1981/example.
Diffstat (limited to 'examples/src/main')
-rw-r--r--examples/src/main/r/RSparkSQLExample.R2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/src/main/r/RSparkSQLExample.R b/examples/src/main/r/RSparkSQLExample.R
index de489e1bda..4e0267a038 100644
--- a/examples/src/main/r/RSparkSQLExample.R
+++ b/examples/src/main/r/RSparkSQLExample.R
@@ -18,7 +18,7 @@
library(SparkR)
# $example on:init_session$
-sparkR.session(appName = "MyApp", sparkConfig = list(spark.some.config.option = "some-value"))
+sparkR.session(appName = "R Spark SQL basic example", sparkConfig = list(spark.some.config.option = "some-value"))
# $example off:init_session$