Skip to content

Commit

Permalink
[FLINK-23157][docs][table] Fix missing comma in "Versioned Tables" page
Browse files Browse the repository at this point in the history
This closes apache#16289
  • Loading branch information
Han Wei authored Jun 25, 2021
1 parent 1ae6913 commit c6cd492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/docs/dev/table/concepts/versioned_tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ and event-time attribute. Imagine an append-only table of currency rates.
```sql
CREATE TABLE currency_rates (
currency STRING,
rate DECIMAL(32, 10)
rate DECIMAL(32, 10),
update_time TIMESTAMP(3),
WATERMARK FOR update_time AS update_time
) WITH (
Expand Down

0 comments on commit c6cd492

Please sign in to comment.