Alan Fitch
12/28/2022, 9:43 PMBUILTIN
function that converts T
and F
to true
and false
?Clay Roper
12/28/2022, 9:52 PM*B*UILTIN_RESULT.TYPE_BOOLEAN()
Alan Fitch
12/28/2022, 9:53 PMDavid B
01/16/2023, 3:34 AMSELECT
BUILTIN_RESULT.TYPE_BOOLEAN(transaction.posting)
FROM
transaction
Clay Roper
01/16/2023, 4:15 PMSELECT
transaction.posting
FROM
transaction
David B
01/16/2023, 9:19 PMSELECT * FROM ( SELECT ROWNUM AS ROWNUMBER, * FROM ( ${query} ) ) WHERE ( ROWNUMBER BETWEEN ${rowbegin} AND ${rowend} )
I'm not sql-smart enough to know why this breaks the builtin function, but running the sql string in a script directly has the correct results
Thanks Clay!