lua-resty-mysql
lua-resty-mysql copied to clipboard
为什么查询结果不支持返回number类型,而是将number类型也按string类型返回?
lua文档: lua_Number typedef double lua_Number; lua源码: #define LUA_NUMBER long double
在代码中看到了这个注释: -- converters[0x08] = tonumber -- long long
请问注释的原因,是因为 lua语言5.3以前的版本不能完整支持64比特位数字导致的吗?如果不是,那具体是什么原因?