When creating a boolean (nullable) column in Postgres. When generating code from SQL that retrieves this column, it becomes `results.getBoolean()` . Reading ResultSet.java, it states > "Returns: the column value; if the value is SQL NULL, the value returned is false." Ideally, if the table contains null, I would like it to return null. I would like to hear the maintainer's opinion on this.