2
我正在尋找一種能夠以一致的方式格式化CQL模式文件的工具。Cassandra CQL格式器
例:
CREATE TABLE platforms.provisiondevice (device_eui text, app_eui text, api_key text, acct_id text, site_id text, status text, PRIMARY KEY ((device_eui, app_eui)));
到
CREATE TABLE platforms.provisiondevice (
device_eui text,
app_eui text,
api_key text,
acct_id text,
site_id text,
status text,
PRIMARY KEY ((device_eui, app_eui))
);
到目前爲止,我的谷歌搜索結果顯示,沒有結果的定製列表格式。它基本上必須是一個離線的命令行工具來滿足我的需求。
如果一個SQL格式化器支持CQL,那麼它在技術上也可以工作,但是我的谷歌搜索器都沒有工作。