sqlparse icon indicating copy to clipboard operation
sqlparse copied to clipboard

sqlformat --reindent not Unicode ready

Open jidanni opened this issue 4 years ago • 0 comments

$ cat e.sql 
SELECT a, b, c, d FROM t;
SELECT a, b, 業者名稱, d FROM t;
$ sqlformat --reindent e.sql
SELECT a,
       b,
       c,
       d
FROM t;


SELECT a,
       b, 業者名稱, d
FROM t;

jidanni avatar Aug 21 '21 06:08 jidanni