Skip to content

Commit

Permalink
set
Browse files Browse the repository at this point in the history
  • Loading branch information
felixcheung committed Jan 21, 2018
1 parent e4e6a96 commit c24de9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/structured-streaming-programming-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -1105,8 +1105,8 @@ streamingDf.join(staticDf, "type", "right_join") # right outer join with a stat
<div data-lang="r" markdown="1">

{% highlight r %}
staticDf = read.df(...)
streamingDf = read.stream(...)
staticDf <- read.df(...)
streamingDf <- read.stream(...)
joined <- merge(streamingDf, staticDf, sort = FALSE) # inner equi-join with a static DF
joined <- join(
staticDf,
Expand Down

0 comments on commit c24de9c

Please sign in to comment.