Closed andreoss closed 2 months ago
PostgreSQL provides a special syntax for a one-byte character E'<char>' sqlformat puts space after E which is incorrect
E'<char>
E
$ echo "SELECT 'new line -> '||E'\n';" | sleek SELECT 'new line -> ' || E '\n';
@andreoss Hello, this issue has been fixed in the unreleased version. You can wait for the new version to be released, then update the sqlformat package to the latest version in sleek and try again. :)
Thanks
PostgreSQL provides a special syntax for a one-byte character
E'<char>
' sqlformat puts space afterE
which is incorrect