sqlformat-rs
sqlformat-rs copied to clipboard
Escaped strings formatted incorrectly
When formatting the postgres query:
INSERT INTO
"public"."users"("name")
VALUES
(E'alice');
It turns into:
INSERT INTO
"public"."users"("name")
VALUES
(E 'alice');
The space between the E and the string 'alice' isn't valid.