Re: pgsql: Add Boolean node

2022-01-17 Thread Tom Lane
Peter Eisentraut writes: > Add Boolean node FTR, there should have been a catversion bump here, since this certainly broke stored views. regards, tom lane

pgsql: Add Boolean node

2022-01-17 Thread Peter Eisentraut
Add Boolean node Before, SQL-level boolean constants were represented by a string with a cast, and internal Boolean values in DDL commands were usually represented by Integer nodes. This takes the place of both of these uses, making the intent clearer and having some amount of type safety. Revie