Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Michael Born @ Ortus
Michael Born @ OrtusLabels
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Priority
Created 8 September 2022 at 16:37
Updated 18 June 2023 at 16:41
The
query.getColumnList()
method in ACF returns an array:<cfscript> myQuery = queryNew( 'ID,name,age' ); writeDump( myQuery.getColumnList() ); </cfscript>
But in Lucee this returns a stringified list.
It’s worth noting that it is absolutely bonkers for ACF to put “list” in the name and yet provide an array… but still. It is worth noting the incompat and discussing a potential fix.
Perhaps we should add a
getColumnArray()
member method instead?