Github user emlyn commented on the issue:
https://github.com/apache/spark/pull/16609
I think I've renamed to storageName everywhere now. I had to add it to
`generic.R` too, otherwise the tests complained. I tried to guess what to put
there from surrounding entries, I hope I did it correctly.
I've also added a test, which now fails with:
```
Failed
-------------------------------------------------------------------------
1. Error: storageName on DataFrame (@test_sparkSQL.R#2608)
---------------------
unused argument (value = "foobar")
1: `storageName<-`(`*tmp*`, value = "foobar") at
/tmp/spark/R/lib/SparkR/tests/testthat/test_sparkSQL.R:2608
DONE
===========================================================================
Error: Test failures
Execution halted
```
It also fails when running manually in `sparkR`:
```R
> df <- createDataFrame(list(list(1)))
> storageName(df)
NULL
> storageName(df) <- "foobar"
Error in `storageName<-`(`*tmp*`, value = "foobar") :
unused argument (value = "foobar")
```
I'm not familiar with R, so not sure how to fix it. Any hints?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]