cqlls 4.1.0

The Best lanugage server for CQL (Cassandra Query Lanugage) ^_^
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// @xx
-- @xx
/*
    This is the first line of
    of a comment that spans multiple
    lines
*/
CREATE ROLE IF NOT EXISTS coach -- End of line comment
WITH LOGIN = true
AND PASSWORD = 'All4One2day!';

CREATE ROLE IF NOT EXISTS sys_admin // End of line comment
WITH LOGIN = true
AND PASSWORD = 'changeme'
AND SUPERUSER = true;

/* @name some block */