intersystems / intersystems/isc-codetidy
Indentation of unions in SQL class queries
Open
bug
- Dominant language
- ObjectScript
- Stars
- 4
- Forks
- 6
- PR merge metrics
- No merged PRs in 30d
Description
The automatic indentation of SQL class queries with UNION statements is a little funky:
```
Query Test() As %SQLQuery [ SqlProc ]
{
select 1
union
select 2
union
select 3
}
```
After compilation, turns into:
```
Query Test() As %SQLQuery [ SqlProc ]
{
select 1
union
select 2
union
select 3
}
```
Contributor guide
Assessment
This issue has not been assessed yet.