Tarantool development patches archive
 help / color / mirror / Atom feed
[Tarantool-patches] [PATCH v2 0/2] fix replication tx boundaries after local space rework
 2020-05-29 11:09 UTC  (15+ messages)
` [Tarantool-patches] [PATCH v2 1/2] wal: fix tx boundaries
` [Tarantool-patches] [PATCH v2 2/2] wal: reorder tx rows so that a tx ends on a global row

[Tarantool-patches] [PATCH v4 0/8] lua/log: add an ability to setup logger without box.cfg{}
 2020-05-29 11:08 UTC  (41+ messages)
` [Tarantool-patches] [PATCH v4 1/8] core/say: do not reconfig early set up logger
` [Tarantool-patches] [PATCH v4 2/8] lua/log: declare say_logger_init and say_logger_initialized
` [Tarantool-patches] [PATCH v4 3/8] lua/log: put string constants to map
` [Tarantool-patches] [PATCH v4 4/8] lua/log: do not allow to set json for boot logger
` [Tarantool-patches] [PATCH v4 5/8] lua/log: declare log as separate variable
` [Tarantool-patches] [PATCH v4 6/8] lua/log: use log module settings inside box.cfg
` [Tarantool-patches] [PATCH v4 7/8] lua/log: allow to configure logging without a box
` [Tarantool-patches] [PATCH v4 8/8] test: use direct log module

[Tarantool-patches] [PATCH v5 00/10] Add static analysis with luacheck
 2020-05-29 11:08 UTC  (31+ messages)
` [Tarantool-patches] [PATCH v5 01/10] Add initial luacheck config
` [Tarantool-patches] [PATCH v5 02/10] gitlab-ci: enable static analysis with luacheck
` [Tarantool-patches] [PATCH v5 03/10] Fix luacheck warnings in extra/dist/tarantoolctl.in
` [Tarantool-patches] [PATCH v5 04/10] Fix luacheck warnings in src/lua/
` [Tarantool-patches] [PATCH v5 05/10] "
` [Tarantool-patches] [PATCH v5 06/10] Fix luacheck warnings in src/box/lua/
` [Tarantool-patches] [PATCH v5 07/10] "
` [Tarantool-patches] [PATCH v5 08/10] Fix luacheck warnings in test/
` [Tarantool-patches] [PATCH v5 09/10] Add luacheck supressions for luajit tests
` [Tarantool-patches] [PATCH 10/10] build: Enable 'make luacheck' target
` [Tarantool-patches] [PATCH v5 11/10] test: fix warnings spotted by luacheck

[Tarantool-patches] [PATCH 0/2] Fix C module reloading
 2020-05-29 10:59 UTC  (14+ messages)
` [Tarantool-patches] [PATCH 1/2] Copy DSO module before load instead of symlink-ing
` [Tarantool-patches] [PATCH 2/2] Allow to set directory for copying DSO before load

[Tarantool-patches] [PATCH v2 00/10] Sanitize unaligned access
 2020-05-29  8:53 UTC  (27+ messages)
` [Tarantool-patches] [PATCH v2 01/10] small: sanitized rlist and new region API
` [Tarantool-patches] [PATCH v2 10/10] xrow: use unaligned store operation in xrow_to_iovec()
` [Tarantool-patches] [PATCH v2 02/10] cmake: ignore warnings on alignof() and offsetof()
` [Tarantool-patches] [PATCH v2 03/10] cmake: add option ENABLE_UB_SANITIZER
` [Tarantool-patches] [PATCH v2 04/10] crc32: align memory access
` [Tarantool-patches] [PATCH v2 05/10] sql: make BtCursor's memory aligned
` [Tarantool-patches] [PATCH v2 06/10] region: use aligned allocations where necessary
` [Tarantool-patches] [PATCH v2 07/10] vinyl: align statements and bps tree extents
` [Tarantool-patches] [PATCH v2 08/10] tuple: use unaligned store-load for field map
` [Tarantool-patches] [PATCH v2 09/10] port: make port_c_entry not PACKED

[Tarantool-patches] [PATCH 1/1] test: stop linking msgpuck lib with test modules
 2020-05-28 22:15 UTC  (3+ messages)

[Tarantool-patches] [PATCH 0/6] Remove implicit cast
 2020-05-28 14:17 UTC  (7+ messages)
` [Tarantool-patches] [PATCH 1/6] sql: remove implicit cast for assignment
` [Tarantool-patches] [PATCH 2/6] sql: remove mem_apply_type() from OP_MakeRecord
` [Tarantool-patches] [PATCH 3/6] sql: replace ApplyType by CheckType for IN operator
` [Tarantool-patches] [PATCH 4/6] sql: remove mem_apply_type() from OP_MustBeInt
` [Tarantool-patches] [PATCH 5/6] sql: remove implicit cast from string for comparison
` [Tarantool-patches] [PATCH 6/6] sql: remove OP_ApplyType

[Tarantool-patches] [PATCH] core: don't start example instance in postinstall
 2020-05-28 11:33 UTC  (9+ messages)

[Tarantool-patches] [test-run] Add options for upgrade testing
 2020-05-28  9:39 UTC  (3+ messages)

[Tarantool-patches] [PATCH] error: add format string usage to form a CustomError message
 2020-05-28  8:31 UTC 

[Tarantool-patches] [PATCH v2] gitlab-ci: cleanup temporary perf images
 2020-05-28  7:40 UTC  (2+ messages)

[Tarantool-patches] [PATCH v2] gitlab-ci: parallelize perf testing
 2020-05-28  7:40 UTC  (2+ messages)

[Tarantool-patches] [PATCH v2] test: set unix sockets for iproto at core = app
 2020-05-28  7:36 UTC  (2+ messages)

[Tarantool-patches] [PATCH 1/1] fk: fix wrong sizeof() in fk_constraint_def_sizeof()
 2020-05-28  7:24 UTC  (2+ messages)

[Tarantool-patches] [PATCH v3 00/10] lua/log: add an ability to setup logger without box.cfg{}
 2020-05-28  7:21 UTC  (18+ messages)
` [Tarantool-patches] [PATCH v3 01/10] core/say: drop redundant declarations
` [Tarantool-patches] [PATCH v3 02/10] core/say: drop vsay declaration
` [Tarantool-patches] [PATCH v3 03/10] core/say: do not reconfig early set up logger
` [Tarantool-patches] [PATCH v3 04/10] lua/log: declare say_logger_init and say_logger_initialized
` [Tarantool-patches] [PATCH v3 05/10] lua/log: put string constants to map
` [Tarantool-patches] [PATCH v3 06/10] lua/log: do not allow to set json for boot logger
` [Tarantool-patches] [PATCH v3 07/10] lua/log: declare log as separate variable
` [Tarantool-patches] [PATCH v3 08/10] lua/log: use log module settings inside box.cfg
` [Tarantool-patches] [PATCH v3 09/10] lua/log: allow to configure logging without a box
` [Tarantool-patches] [PATCH v3 10/10] test: use direct log module

[Tarantool-patches] [PATCH 00/10] Sanitize unaligned access
 2020-05-27 23:33 UTC  (3+ messages)

[Tarantool-patches] [PATCH v1] test: fix box/push.test.lua for ASAN
 2020-05-27 22:21 UTC  (2+ messages)

[Tarantool-patches] [PATCH 1/1] build: link bit library to vclock library
 2020-05-27 22:02 UTC  (3+ messages)

[Tarantool-patches] [RFC] Quorum-based synchronous replication
 2020-05-27 21:17 UTC  (12+ messages)

[Tarantool-patches] [PATCH 0/2] Validate result of upserts squash & skip invalid upserts which can't be applied
 2020-05-27 20:10 UTC  (9+ messages)
` [Tarantool-patches] [PATCH 2/2] vinyl: skip invalid upserts during squash

[Tarantool-patches] [PATCH v2 0/2] Unthrottle vinyl scheduler on manual checkpoint
 2020-05-27 13:40 UTC  (3+ messages)

[Tarantool-patches] [PATCH] vinyl: fix assert in vy_tx_write()
 2020-05-27 12:51 UTC  (3+ messages)

[Tarantool-patches] [PATCH] cmake: set CMP0037 policy to NEW by default
 2020-05-27 10:17 UTC  (9+ messages)

[Tarantool-patches] [PATCH] cmake: add LTO support for building luajit
 2020-05-27 10:01 UTC  (7+ messages)

[Tarantool-patches] [PATCH] vinyl: add NULL check of xrow_upsert_execute() retval
 2020-05-27  2:56 UTC 

[Tarantool-patches] [PATCH small 1/1] region: new region_alloc_array, updated alloc_object
 2020-05-27  0:00 UTC  (3+ messages)

[Tarantool-patches] [PATCH v2] Add infrastructure for fuzzing testing and fuzzers
 2020-05-26 15:54 UTC  (4+ messages)

[Tarantool-patches] [PATCH] static build: fix build on ubuntu
 2020-05-26 15:17 UTC 

[Tarantool-patches] [PATCH v2 0/7] Implement OOS build
 2020-05-26 14:42 UTC  (8+ messages)
` [Tarantool-patches] [PATCH v2 1/7] build: static build needs more cleanup in sources
` [Tarantool-patches] [PATCH v2 2/7] build: fix static build w/ dockerfile with cmake
` [Tarantool-patches] [PATCH v2 3/7] build: enable cmake in curl build
` [Tarantool-patches] [PATCH v2 4/7] Fix curl repository for out-of-source build
` [Tarantool-patches] [PATCH v2 5/7] build: change autoconf to cmake in curl build
` [Tarantool-patches] [PATCH v2 6/7] Skip failing test from out-of-source build
` [Tarantool-patches] [PATCH v2 7/7] gitlab-ci: add "

[Tarantool-patches] [PATCH v2 00/10] lua/log: add an ability to setup logger without box.cfg{}
 2020-05-26 14:00 UTC  (13+ messages)
` [Tarantool-patches] [PATCH v2 01/10] core/say: drop redundant declarations
` [Tarantool-patches] [PATCH v2 02/10] core/say: drop vsay declaration
` [Tarantool-patches] [PATCH v2 03/10] core/say: do not reconfig early set up logger
` [Tarantool-patches] [PATCH v2 04/10] lua/log: declare say_logger_init and say_logger_initialized
` [Tarantool-patches] [PATCH v2 05/10] lua/log: put string constants to map
` [Tarantool-patches] [PATCH v2 06/10] lua/log: do not allow to set json for boot logger
` [Tarantool-patches] [PATCH v2 07/10] lua/log: declare log as separate variable
` [Tarantool-patches] [PATCH v2 08/10] lua/log: use log module settings inside box.cfg
` [Tarantool-patches] [PATCH v2 09/10] lua/log: allow to configure logging without a box
` [Tarantool-patches] [PATCH v2 10/10] test: use direct log module

[Tarantool-patches] [PATCH] console: add line carrying backslash
 2020-05-26 12:11 UTC  (2+ messages)

[Tarantool-patches] [PATCH v1] gitlab-ci: integration testting connectors
 2020-05-26  9:58 UTC  (3+ messages)

[Tarantool-patches] [PATCH 1/1] vinyl: add missing diag_set in space creation
 2020-05-25 22:56 UTC  (3+ messages)

[Tarantool-patches] [PATCH 1/1] build: turn off LTO for exports.c
 2020-05-25 19:02 UTC  (3+ messages)

page:  |  | latest

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox