1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/tests/testdata/fmt/badly_formatted.sql
João Baptista c55e936be0
feat(fmt): support SQL (#26750)
This commit adds support for .sql files in "deno fmt" subcommand.

Closes: https://github.com/denoland/deno/issues/25024
---------

Signed-off-by: m4rc3l05 <15786310+M4RC3L05@users.noreply.github.com>
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2024-11-19 21:01:16 +00:00

21 lines
269 B
SQL

select * from foo;
update foo set a = 'b'Where id = 'biz';
create table foo(id text not null
bar text,
biz int,
buz number NOT NULL
);
INSERT
into
user_data
(first_name,
last_name, address, phone, email)
VALUES
('foo', 'bar',
'biz', 1, 'bix');