Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions docs/sql-pipe-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,16 +281,6 @@ For example:
VALUES (0), (1) tab(col)
|> SET col = col * 2;

+---+
|col|
+---+
| 0|
| 2|
+---+

VALUES (0), (1) tab(col)
|> SET col = col * 2;

+---+
|col|
+---+
Expand Down Expand Up @@ -653,4 +643,3 @@ VALUES
| dotNET| 2014| 22500|
+--------+------+--------+
```

4 changes: 2 additions & 2 deletions docs/streaming/structured-streaming-transform-with-state.md
Original file line number Diff line number Diff line change
Expand Up @@ -345,9 +345,9 @@ q = (df.groupBy("key")
<div data-lang="scala" markdown="1">

{% highlight scala %}
val query = df.groupBy("key")
val query = df.groupByKey(x => x.getAs("key"))
.transformWithState(
statefulProcessor = new DownTimeDetector(),
statefulProcessor = new DownTimeDetector(new Duration(10000)),
outputMode = OutputMode.Update,
timeMode = TimeMode.None)
.writeStream...
Expand Down