Files
nvim-treesitter/tests/indent/sql/case.sql
Matthias Q dae928b3bb indents(sql): initial support (#4857)
* indents(sql): initial support

* indents(sql): fix queries and lua style
2023-05-25 05:53:14 +00:00

9 lines
144 B
SQL

select
case
when a = 1 then '1'
when a = 2 then '2'
when a = 3 then '3'
else '0'
end as stmt1
from tab;