You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The checks on $retval unfortunately means that any non-zero value returned as a number from the runtime will be output as a string in JSON, due to the regex, if the user happens to be using JSON::XS.
Raisin::Entity::_compile_column
contains the following check on an entity runtime return value:$retval && !ref($retval) && $retval =~ /^Raisin::Entity::Nested::/
The checks on
$retval
unfortunately means that any non-zero value returned as a number from the runtime will be output as a string in JSON, due to the regex, if the user happens to be usingJSON::XS
.Raisin example:
https://replit.com/@m-dango/RaisinNumericString#main.pl
Comparing resulting JSON across different modules:
https://replit.com/@m-dango/jsonNumberRegex#main.pl
The text was updated successfully, but these errors were encountered: