vertical-blank / sql-formatter

SQL formatter written with only Java Standard Library, without dependencies.
MIT License
223 stars 46 forks source link

Handle Go keyword for TSQL #67

Open ettingshausen opened 1 year ago

ettingshausen commented 1 year ago

Handle Go keyword as reservedNewlineWords.

Origin SQL.

alter table t1 add n_col int null 
go 
update t1 set c_con=0

before

ALTER TABLE
    t1
ADD
    n_col int NULL go
UPDATE
    t1
SET
    c_con = 0

after:

ALTER TABLE
    t1
ADD
    n_col int NULL
GO
UPDATE
    t1
SET
    c_con = 0