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
Tarantool as database, and application server uses LuaJIT for Lua support in appserver. By default it's compiled without LUAJIT_ENABLE_LUA52COMPAT defined thus rawlen is inaccessible in majority of a cases.
But this is not working either if strict mode enabled (which is default for Debug build here).
P.S.
It should probably wrapped in rawget.
The text was updated successfully, but these errors were encountered:
tsafin
changed the title
rawlen usge makes extension incompatible with LuaJIT-based implementations
rawlen usage makes extension incompatible with LuaJIT-based implementations
Jul 8, 2022
Tarantool as database, and application server uses LuaJIT for Lua support in appserver. By default it's compiled without
LUAJIT_ENABLE_LUA52COMPAT
defined thusrawlen
is inaccessible in majority of a cases.This is kinda worked around in a code via
which is translated to Lua as
But this is not working either if
strict
mode enabled (which is default for Debug build here).P.S.
It should probably wrapped in
rawget
.The text was updated successfully, but these errors were encountered: