### SQLDelight Version 2.0.2 ### SQLDelight Dialect Postgresql ### Describe the Bug Boolean Expressions are not bound to BOOLEAN type and being bound to LONG instead e.g Expect the interface to have Boolean type ```sql SELECT TRUE, FALSE; ``` ```sql WITH x(truthy, falsey) AS ( VALUES (TRUE, FALSE), (NOT FALSE, NOT TRUE) ) SELECT x.truthy, x.falsey FROM x; ``` ### Stacktrace _No response_