Results 34 issues of Oleg Babin

```lua -- Can compare decimal with strings and numbers tarantool> decimal.new(123) == '123' --- - true ... tarantool> decimal.new(123) == 123 --- - true ... ``` ```lua -- Can compare...

feature
datetime

script.lua: ```lua box.cfg{} count = 0 netbox = require('net.box') on_push = function() count = count + 1 end local_function = function() box.session.push(1) end box.schema.func.create('local_function', {if_not_exists = true}) netbox.self:call('local_function', {}, {on_push...

Tarantool 2.8.2 ``` tarantool> box.cfg{iproto_threads = require('decimal').new(2)} --- - error: 'builtin/box/load_cfg.lua:19: builtin/box/load_cfg.lua:512: incorrect value to convert to decimal as 2 argument' ... tarantool> box.cfg{memtx_memory = require('decimal').new(2)} --- - error: 'builtin/box/load_cfg.lua:19:...

bug

Tarantool version: Tarantool 2.3.0-136-gaf9ef2115 ```lua x = {} function test() return x end box.schema.func.create('test') y = require('net.box').self:call('test') tarantool> y --- - [] ... tarantool> y.a = 'b' --- ... tarantool>...

bug

Seems std::move(promise) is called twice. Second std::move call should be replaced with `ig.get_promise()`. https://github.com/ton-blockchain/ton/blob/6897b5624566a2ab9126596d8bc4980dfbcaff2d/validator/db/archive-slice.cpp#L530-L535

I guess two fragments below work incorrectly because such transformation loses information about value type. CellSlice becomes just Cell. https://github.com/ton-blockchain/ton/blob/d2b418bb703ed6ccd89b7d40f9f1e44686012014/tonlib/tonlib/TonlibClient.cpp#L4272-L4274 https://github.com/ton-blockchain/ton/blob/d2b418bb703ed6ccd89b7d40f9f1e44686012014/tonlib/tonlib/TonlibClient.cpp#L4311-L4314 Is this behavior intentional? In case if not I...

I got following error: ``` In member function 'Resize', inlined from 'Push' at /nix/store/88WAXS933YDRH4ARHWAWF1G85H7L0F9Y-opentelemetry-static-x86_64-unknown-linux-musl-0.1.0/include/opentelemetry/context/runtime_context.h:286:15, inlined from 'Attach' at /nix/store/88WAXS933YDRH4ARHWAWF1G85H7L0F9Y-opentelemetry-static-x86_64-unknown-linux-musl-0.1.0/include/opentelemetry/context/runtime_context.h:229:20: /nix/store/88WAXS933YDRH4ARHWAWF1G85H7L0F9Y-opentelemetry-static-x86_64-unknown-linux-musl-0.1.0/include/opentelemetry/context/runtime_context.h:299:47: error: argument 1 value '18446744073709551615' exceeds maximum object size 9223372036854775807...

bug
triage/accepted

```bash ${ZKLLVM_SYSROOT}/bin/clang++ -target tvm --sysroot ${ZKLLVM_SYSROOT} -O0 -DTVM -export-json-abi -o dvm_cpp.abi ../pytest/data/dvm_cpp_multireturn.cpp ${ZKLLVM_SYSROOT}/bin/clang++ -target tvm --sysroot ${ZKLLVM_SYSROOT} -O0 -DTVM -o dvm_cpp.tvc ../pytest/data/dvm_cpp_multireturn.cpp -DBOOST_DISABLE_ASSERTS -DBOOST_EXCEPTION_DISABLE -I${ZKLLVM_SYSROOT}/include/std PLEASE submit a bug report...

https://github.com/confluentinc/librdkafka/blob/a5c5641c9efff1d09993098fc8ed1b8935d2b86a/src/rdkafka_conf.c#L3952-L3954 But it should be `reconnect.backoff.ms` instead of `reconnect.max.ms`

I have a problem that happens only under load. Problem occurs only on MacOS (seems GC64 is enabled). Avro-schema version: 3.0.3 Tarantool version: 2.2.1 Also we use only "validate" method...

bug