Skip to content

v.0.2.4

Choose a tag to compare

@vitaly-t vitaly-t released this 28 Feb 13:28
· 117 commits to master since this release

Improving some special cases of sql compression + general minification.

for the following case:

select'\ntext'

to become:

select E'\ntext'

and not this:

selectE'\ntext'

i.e. injecting a leading space where necessary.