squawk-fmt 2.63.0

Linter for Postgres migrations & SQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
source: crates/squawk_fmt/tests/tests.rs
input_file: crates/squawk_fmt/tests/before/select.sql
---
select 1;select 2;select 3;
select 'hello';
select now();

select
  'really long string                                                    ',
  'another really long string';

select foo as "Quoted Alias" from "Quoted Table";

select 1 as foo;

select 1 /*a*/ group /* b */ by /*c */ 1;