Fixed
Details
Details
Assignee
Pothys - MitrahSoft
Pothys - MitrahSoftReporter
Alojz Krajnc
Alojz KrajncPriority
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 10 April 2024 at 08:32
Updated 16 May 2024 at 08:15
Resolved 16 April 2024 at 10:14
If query has more than 30 columns Lucee throws an error when dumping it:
The value [2147483648] is outside the range that can be represented as an int.
<cfscript> q = queryNew("") var numberOfColumns = 31 // 30 works OK, 31 throws error: The value [2147483648] is outside the range that can be represented as an int. for(i=1; i<=numberOfColumns; i++) { queryAddColumn(q, "c#i#", ["x"]) } dump(q) </cfscript>