1. Are you planing to add support for PostgreSQL plpgsql language ?
2. It would be great if you add atleast PERFORM command ( in fact alias SELECT)
https://www.postgresql.org/docs/16/plpgsql-statements.html.
3. And I had one strange issue with Justify right on Profile 1 - Destop App.
From some point I wasn't able to force this option to work.
I tried "the same" setting on Profile 2 and it is functional.
ResetProfile has no influence, still Justify right not work on Profile 1.
4. It would be great if you will add possibility in Right justify to format code AS example below ...
-- line comment
SELECT dept_nbr ,
dept_name ,
employee_name ,
MAX (salary_amount)
FROM dept
LEFT OUTER JOIN employee ON dept.dept_nbr = employee.dept_nbr
RIGHT OUTER JOIN orders ON order_nbr = dept_nbr
INNER JOIN salary ON dept_name = salary_name
WHERE
/*
block comment line 1
block comment line 2
*/
dept.dept_name = employee.dept_name
AND dept_nbr = 'A4711'
AND dept_name = 'Consultants'
ORDER BY dept_nbr ,
employee_nbr
GROUP BY

