Skip to content
Snippets Groups Projects
Commit 3aec9f4e authored by Yu ISHIKAWA's avatar Yu ISHIKAWA Committed by Shivaram Venkataraman
Browse files

[SPARK-9249] [SPARKR] local variable assigned but may not be used

[[SPARK-9249] local variable assigned but may not be used - ASF JIRA](https://issues.apache.org/jira/browse/SPARK-9249)

https://gist.github.com/yu-iskw/0e5b0253c11769457ea5

Author: Yu ISHIKAWA <yuu.ishikawa@gmail.com>

Closes #7640 from yu-iskw/SPARK-9249 and squashes the following commits:

7a51cab [Yu ISHIKAWA] [SPARK-9249][SparkR] local variable assigned but may not be used
parent 428cde5d
No related branches found
No related tags found
No related merge requests found
...@@ -102,11 +102,11 @@ readList <- function(con) { ...@@ -102,11 +102,11 @@ readList <- function(con) {
readRaw <- function(con) { readRaw <- function(con) {
dataLen <- readInt(con) dataLen <- readInt(con)
data <- readBin(con, raw(), as.integer(dataLen), endian = "big") readBin(con, raw(), as.integer(dataLen), endian = "big")
} }
readRawLen <- function(con, dataLen) { readRawLen <- function(con, dataLen) {
data <- readBin(con, raw(), as.integer(dataLen), endian = "big") readBin(con, raw(), as.integer(dataLen), endian = "big")
} }
readDeserialize <- function(con) { readDeserialize <- function(con) {
......
...@@ -104,16 +104,13 @@ sparkR.init <- function( ...@@ -104,16 +104,13 @@ sparkR.init <- function(
return(get(".sparkRjsc", envir = .sparkREnv)) return(get(".sparkRjsc", envir = .sparkREnv))
} }
sparkMem <- Sys.getenv("SPARK_MEM", "1024m")
jars <- suppressWarnings(normalizePath(as.character(sparkJars))) jars <- suppressWarnings(normalizePath(as.character(sparkJars)))
# Classpath separator is ";" on Windows # Classpath separator is ";" on Windows
# URI needs four /// as from http://stackoverflow.com/a/18522792 # URI needs four /// as from http://stackoverflow.com/a/18522792
if (.Platform$OS.type == "unix") { if (.Platform$OS.type == "unix") {
collapseChar <- ":"
uriSep <- "//" uriSep <- "//"
} else { } else {
collapseChar <- ";"
uriSep <- "////" uriSep <- "////"
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment