MartijnVisser commented on code in PR #22204:
URL: https://github.com/apache/flink/pull/22204#discussion_r1155607367
##########
docs/content/docs/dev/table/sql/create.md:
##########
@@ -316,7 +316,7 @@ CREATE TABLE MyTable (
`user_id` BIGINT,
`price` DOUBLE,
`quantity` DOUBLE,
- `cost` AS price * quanitity, -- evaluate expression and supply the result
to queries
+ `cost` AS price * quantity, -- evaluate expression and supply the result to
queries
Review Comment:
```suggestion
`cost` AS price * quantity -- evaluate expression and supply the result
to queries
```
##########
docs/content.zh/docs/dev/table/sql/create.md:
##########
@@ -317,7 +317,7 @@ CREATE TABLE MyTable (
`user_id` BIGINT,
`price` DOUBLE,
`quantity` DOUBLE,
- `cost` AS price * quanitity, -- evaluate expression and supply the result
to queries
+ `cost` AS price * quantity, -- evaluate expression and supply the result to
queries
Review Comment:
```suggestion
`cost` AS price * quantity -- evaluate expression and supply the result
to queries
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]