Another formatter issue, part 2 🥹

The formatter does not seem to know the VAR keyword.
At least there's no alignment:

VAR name1 VARCHAR2
VAR  name2  VARCHAR2
VAR   name3   VARCHAR2

BEGIN
   --
    :name1 := 'Name1';
   :name2  := 'Name2';
   :name3  := 'Name3';
END;
/

(This is the result after formatting.)

I logged it as QP-4190. That "feature" has been in QP5 code since 2007, not yet noticed thus far ... :slight_smile:
It's actually a typo. Time to fix it.

Andre