Github user dongjoon-hyun commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22801#discussion_r227478845
  
    --- Diff: examples/src/main/r/RSparkSQLExample.R ---
    @@ -118,6 +118,10 @@ df <- 
read.df("examples/src/main/resources/people.csv", "csv", sep=";", inferSch
     namesAndAges <- select(df, "name", "age")
     # $example off:manual_load_options_csv$
     
    +# $example on:manual_save_options_orc$
    +df <- read.df("examples/src/main/resources/users.orc", "orc")
    +write.orc(df, "users_with_options.orc", 
orc.bloom.filter.columns="favorite_color", orc.dictionary.key.threshold=1.0, 
orc.column.encoding.direct="name")
    +# $example off:manual_save_options_orc$
    --- End diff --
    
    Thank you!


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to