Fixed
Details
Assignee
Michael OffnerMichael OffnerReporter
Zac SpitzerZac SpitzerPriority
MajorLabels
Fix versions
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
Affects versions
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Zac Spitzer
Zac SpitzerPriority
Labels
Fix versions
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
Affects versions
Created 13 January 2016 at 08:45
Updated 28 October 2020 at 13:45
Resolved 28 October 2020 at 13:45
Query of Query count
crashes with objects in columns, even when they aren't referenced
Can't cast Complex Object Type Struct to String
Use Built-In-Function "serialize(Struct):String" to create a String from Struct
<cfscript> obj = { a=1, b=2, c=3 }; q_obj = queryNew("id, obj, mod"); queryAddRow(q_obj); querySetCell(q_obj,"id",1); querySetCell(q_obj,"obj",duplicate(obj)); querySetCell(q_obj,"mod","aaa"); queryAddRow(q_obj); querySetCell(q_obj,"id",2); querySetCell(q_obj,"obj",duplicate(obj)); querySetCell(q_obj,"mod","bbb"); </cfscript> <cfdump var="#obj#"> <cfdump var="#q_obj#"> <cfquery dbtype="query" name="q_test"> select count(*) as r, mod from q_obj group by mod </cfquery> <cfdump var="#q_test#">
This works in ACF