Here's the ticket and discussion
https://issues.jboss.org/browse/RAILO-1450I'm trying to use the proposed workaround to replace wasNull, but I'm not quite sure I'm invoking it properly.
Here's the function:
function isQueryCellNull(required query qry,required string columnName, required numeric row) {
return isNull(qry.getAt(columnName, row, nullValue()));
}
So, idea is to replace this
if(arguments.query.wasNull())
with this
if(isQueryCellNull(arguments.query, arguments.property.getColumn(), xxxxx))
But I'm not sure about row agrument. How can I get it in context of getPropertyColumnValue method?
Thanks,
-sg