Closed Californian closed 2 months ago
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.
E
'alice'
When formatting the postgres query:
It turns into:
The space between the
E
and the string'alice'
isn't valid.