inferrinizzard / prettier-sql

[ARCHIVED] Please use https://github.com/sql-formatter-org/sql-formatter
https://github.com/sql-formatter-org/sql-formatter
MIT License
21 stars 5 forks source link

formatter remove as in clickhouse script ! #83

Open mbtolou opened 2 years ago

mbtolou commented 2 years ago

hi.

when using formatter in clickhouse script "AS" removed.

create LIVE VIEW ahe.lv_ahe_commands (`create_time` DateTime('Asia/Tehran'), `cnt` UInt64) as
select create_time, count() as cnt
from ahe.ahe_commands
where (create_time > addMinutes(now('Asia/Tehran'), -60)) and (is_expire = 0) and (is_processed = 0)
group by create_time
order by create_time ASC;

Animation