Skip to content

Commit

Permalink
[hotfix] fix typo in upsert-kafka docs (apache#14363)
Browse files Browse the repository at this point in the history
Co-authored-by: zhuxiaoshang <[email protected]>
  • Loading branch information
zhuxiaoshang and zhuxiaoshang authored Dec 11, 2020
1 parent 91e81ee commit fa48f76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/dev/table/connectors/upsert-kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ CREATE TABLE pageviews_per_region (
user_region STRING,
pv BIGINT,
uv BIGINT,
PRIMARY KEY (region) NOT ENFORCED
PRIMARY KEY (user_region) NOT ENFORCED
) WITH (
'connector' = 'upsert-kafka',
'topic' = 'pageviews_per_region',
Expand Down
2 changes: 1 addition & 1 deletion docs/dev/table/connectors/upsert-kafka.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ CREATE TABLE pageviews_per_region (
user_region STRING,
pv BIGINT,
uv BIGINT,
PRIMARY KEY (region) NOT ENFORCED
PRIMARY KEY (user_region) NOT ENFORCED
) WITH (
'connector' = 'upsert-kafka',
'topic' = 'pageviews_per_region',
Expand Down

0 comments on commit fa48f76

Please sign in to comment.