In my code I have a query of query, something like this:
<cfset someQueryVar = someComponent.getSomeQuery()>
<!--- ... --->
<cfquery name="abc" dbtype="query">
select * from someQueryVar
...
Recently I updated from CF 2018 hotfix 11 to hotfix 13. Now I get this error:
MESSAGE getColumnType()
TYPE coldfusion.runtime.CfErrorWrapper
Also in a different place in code I have another "query of query" like so:
42 | <cfquery name="abc2" dbtype="query">
43 | select * from someQueryVar2 where someColumn is not null
44 | </cfquery>
and here I get this error on line 42:
java.lang.ArrayIndexOutOfBoundsException: Index 45 out of bounds for length 45
which does not make any sense.
I am not able to find any information about it on internet.
Were there some breaking changes from hotfix 11 to 13 related to query of queries?