Skip to content

Commit aa0bd97

Browse files
authored
Update 03_kafka_join.md
fix typos
1 parent f3a936d commit aa0bd97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

joins/03_kafka_join/03_kafka_join.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ CREATE TEMPORARY TABLE currency_rates (
2020
`currency_code` STRING,
2121
`eur_rate` DECIMAL(6,4),
2222
`rate_time` TIMESTAMP(3),
23-
WATERMARK FOR `rate_time` AS rate_time - INTERVAL '15' SECONDS,
23+
WATERMARK FOR `rate_time` AS rate_time - INTERVAL '15' SECOND,
2424
PRIMARY KEY (currency_code) NOT ENFORCED
2525
) WITH (
2626
'connector' = 'upsert-kafka',
@@ -35,7 +35,7 @@ CREATE TEMPORARY TABLE transactions (
3535
`currency_code` STRING,
3636
`total` DECIMAL(10,2),
3737
`transaction_time` TIMESTAMP(3),
38-
WATERMARK FOR `transaction_time` AS transaction_time - INTERVAL '30' SECONDS
38+
WATERMARK FOR `transaction_time` AS transaction_time - INTERVAL '30' SECOND
3939
) WITH (
4040
'connector' = 'kafka',
4141
'topic' = 'transactions',

0 commit comments

Comments
 (0)