Rene Saarsoo
Rene Saarsoo
I found that I'm able to build and run LDTK when I use this PR: https://github.com/deepnight/ldtk/pull/504 Though admittedly this PR is quite old by now. Any chance of it getting...
The issue here has multiple levels: 1. `NAME` is not a reserved keyword (just a plain keyword) and can therefore be used as an identifier in most contexts. However SQL...
Thanks for the report. The formatting of `OR` and `AND` is currently troublesome. It works well inside the `WHERE` clause, but produces bad outcomes pretty much everywhere else. A known...
The formatting of `CREATE VIEW` and joins has now been reviewed and corrected for all SQL dialects.
The latest version in master produces: ```sql SELECT DISTINCT ON (c1, c2) c1, c2 FROM t1; ``` This isn't really better either :(
With 9.0.0 there's another slight change. It now gets formatted as: ```sql SELECT DISTINCT ON (c1, c2) c1, c2 FROM t1; ``` Still not there though :(
Seems like a pretty sensible request. Though it probably makes more sense for use in an editor plugin, e.g. to format a selected line. It would actually be not that...
Yeah, the SQL dialects generally fall into two camps with how they allow escaping `'` in strings: - those that use backslash: `` \' `` - those that use repeated...
Ah, I see. The behavior in 4.0 is in some ways even worse - it fails silently and gives you invalid SQL. But the bug is essentially the same. We've...
This is now finally fixed in 10.4.0.