Closed
Conversation
Signed-off-by: Jason T. Brown <jason@astraea.earth>
metasim
reviewed
Oct 17, 2019
| checkDocs("rf_local_is_in") | ||
|
|
||
| // tile is 3 by 3 with values, 1 to 9 | ||
| val df = Seq((byteArrayTile, lit(1), lit(5), lit(10))).toDF("t", "one", "five", "ten") |
Member
There was a problem hiding this comment.
@vpipkt Change Seq((byteArrayTile, lit(1), lit(5), lit(10))) to Seq((byteArrayTile, 1, 5, 10)) and the java.lang.UnsupportedOperationException: No Encoder found for org.apache.spark.sql.Column error should go away. You only want to use litafter the Dataframe is created.
metasim
reviewed
Oct 17, 2019
| examples = """ | ||
| Examples: | ||
| > SELECT _FUNC_(tile, array); | ||
| ...""" |
Member
There was a problem hiding this comment.
I think this is a case where I'd be helped by an example... I'm pretty sure I understand the use case/behavior now, but, but it took a bit of brow furrowing.
Member
There was a problem hiding this comment.
Of course reference.md too, when you get the implementation done.
Signed-off-by: Jason T. Brown <jason@astraea.earth>
Signed-off-by: Jason T. Brown <jason@astraea.earth>
…l_is_in Signed-off-by: Jason T. Brown <jason@astraea.earth>
Signed-off-by: Jason T. Brown <jason@astraea.earth>
Member
Author
Member
Author
|
Local docs build was successful. |
Signed-off-by: Jason T. Brown <jason@astraea.earth>
Member
Author
|
See #400 which triggers circle CI docs build so we can see the final docs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
To dos: