Timur Safin
Timur Safin
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. This...
Most of a time I run Tarantool (LuaJIT flavour) in `strict` mode as it's enabled by default in Debug mode. This makes `lldebugger.lua` to generate very vague error messages, like:...
Bugs/features ========== - [ ] Datetime miscalculations for some dates (A - B + B != A) #7145; - [x] Do not mess with nanoseconds, output as is - #7045;...
Early PoC to introduce builtin debugger into Tarantool console. Based on https://github.com/slembcke/debugger.lua.git
> This is step №1 from debugger PoC branch #6844 * We created console debugger available in `cdebugger.lua` module * Debugger activated via ``` local debugger = require 'cdebugger' debugger()...
We did not take into consideration the fact that as result of date/time arithmetic we could get in a different timezone, if DST boundary has been crossed during operation. ```...
When I write anything in Lua using luafun, I frequently could directly convert Perl 1-liner approach (if there are `map` or `grep` iterators, etc), but there is an important omission...
Since 2.10.0, if one need to operate with timezone names, then he needs to preinstall `tzdata` package as binary dependency before running corresponding Tarantool operations, otherwise Tarantool fails to parse...
As we have found it harder way we do already perfectly support fiber debugging in the console debugger. The purpose of this PR to make that fact more visible and...