wuchong commented on a change in pull request #14357:
URL: https://github.com/apache/flink/pull/14357#discussion_r540768724
##########
File path: docs/dev/connectors/cassandra.zh.md
##########
@@ -122,7 +122,7 @@ CREATE KEYSPACE IF NOT EXISTS example
WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '1'};
CREATE TABLE IF NOT EXISTS example.wordcount (
word text,
- count bigint,
+ `count` bigint,
Review comment:
I'm not sure about this.
According to Cassandra docs, the `count` is a non-reserved keyword. And non
reserved keywords doens't need single or double quotes.
> Reserved keywords cannot be used as identifier, they are truly reserved
for the language (but one can enclose a reserved keyword by double-quotes to
use it as an identifier). Non-reserved keywords however only have a specific
meaning in certain context but can used as identifier otherwise.
https://cassandra.apache.org/doc/latest/cql/appendices.html
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]