哪个 CQL 版本对应哪个 Cassandra 版本?

Which CQL version corresponds to which Cassandra version?

CQL 文档是根据 CQL 版本而不是 Cassandra 产品版本组织的。显然,我想阅读与我正在使用的 Cassandra 版本对应的 CQL 文档,但我找不到关于哪个 CQL 版本对应哪个 Cassandra 版本的综合信息:

是否有列出版本映射的简单页面?

CQL Version  | Cassandra Version

3.3          | 2.2 and above
3.1          | 2.o & 2.1
3.0          | 1.2 to 1.x

CQL older version.
CQL 3.3

感谢您的反馈。根据您的反馈,DataStax 文档团队在所有文档的产品兼容性页面中添加了一个新部分:

CQL versions used by DataStax Enterprise and Cassandra 

CQL version           Cassandra         DataStax Enterprise
3.3                   2.2, 3.0,3.x      5.0
3.1                   2.0, 2.1          4.0, 4.5, 4.6, 4.7, 4.8
3.0                   1.2               3.1, 3.2

http://docs.datastax.com/en/landing_page/doc/landing_page/compatibility.html?scroll=compatibilityDocument__cql-versions

欢迎在@DataStaxDocs 上发布更多反馈

如果您已经有一个 运行ning Cassandra 数据库,您可以 运行

SELECT cql_version, release_version FROM system.local;

获取您的 Cassandra 版本和相应的 CQL 版本。