我正在寻找能够以一致的方式格式化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))
);
到目前为止,我的Google搜索没有找到CQL格式化程序的结果。它基本上必须是一个脱机命令行工具,以满足我的需求。
如果SQL格式化程序支持CQL,那么它在技术上也可以正常工作,但我的谷歌搜索都没有。
答案 0 :(得分:4)
在Datastax Devcenter中,您可以使用ctrl+shift+f
格式化选定的cql语句。
OR
选择要格式化的语句和rightclick -> source -> format