Tarantool development patches archive
 help / color / mirror / Atom feed
[Tarantool-patches] [PATCH v5 00/52] Move mem-related functions to mem.c/mem.h
 2021-04-12 23:35 UTC  (55+ messages)
` [Tarantool-patches] [PATCH v5 01/52] sql: enhance vdbe_decode_msgpack_into_mem()
` [Tarantool-patches] [PATCH v5 02/52] sql: disable unused code in sql/analyze.c
` [Tarantool-patches] [PATCH v5 03/52] sql: disable unused code in sql/legacy.c
` [Tarantool-patches] [PATCH v5 04/52] sql: remove NULL-termination in OP_ResultRow
` [Tarantool-patches] [PATCH v5 05/52] sql: move MEM-related functions to mem.c/mem.h
` [Tarantool-patches] [PATCH v5 06/52] sql: refactor port_vdbemem_*() functions
` [Tarantool-patches] [PATCH v5 07/52] sql: remove unused MEM-related functions
` [Tarantool-patches] [PATCH v5 08/52] sql: disable unused code in sql/vdbemem.c
` [Tarantool-patches] [PATCH v5 09/52] sql: introduce mem_str()
` [Tarantool-patches] [PATCH v5 10/52] sql: introduce mem_create()
` [Tarantool-patches] [PATCH v5 11/52] sql: introduce mem_destroy()
` [Tarantool-patches] [PATCH v5 12/52] sql: introduce mem_is_*() functions()
` [Tarantool-patches] [PATCH v5 13/52] sql: introduce mem_copy()
` [Tarantool-patches] [PATCH v5 14/52] sql: introduce mem_copy_as_ephemeral()
` [Tarantool-patches] [PATCH v5 15/52] sql: rework mem_move()
` [Tarantool-patches] [PATCH v5 16/52] sql: rework vdbe_decode_msgpack_into_mem()
` [Tarantool-patches] [PATCH v5 17/52] sql: remove sql_column_to_messagepack()
` [Tarantool-patches] [PATCH v5 18/52] sql: introduce mem_concat()
` [Tarantool-patches] [PATCH v5 19/52] sql: introduce arithmetic operations for MEM
` [Tarantool-patches] [PATCH v5 20/52] sql: introduce mem_compare()
` [Tarantool-patches] [PATCH v5 21/52] sql: introduce bitwise operations for MEM
` [Tarantool-patches] [PATCH v5 22/52] sql: Initialize MEM in sqlVdbeAllocUnpackedRecord()
` [Tarantool-patches] [PATCH v5 23/52] sql: introduce mem_set_null()
` [Tarantool-patches] [PATCH v5 24/52] sql: introduce mem_set_int()
` [Tarantool-patches] [PATCH v5 25/52] sql: introduce mem_set_uint()
` [Tarantool-patches] [PATCH v5 26/52] sql: move mem_set_bool() and mem_set_double()
` [Tarantool-patches] [PATCH v5 27/52] sql: introduce mem_set_str_*() functions
` [Tarantool-patches] [PATCH v5 28/52] sql: introduce mem_copy_str() and mem_copy_str0()
` [Tarantool-patches] [PATCH v5 29/52] sql: introduce mem_set_bin_*() functions
` [Tarantool-patches] [PATCH v5 30/52] sql: introduce mem_copy_bin()
` [Tarantool-patches] [PATCH v5 31/52] sql: introduce mem_set_zerobin()
` [Tarantool-patches] [PATCH v5 32/52] sql: introduce mem_set_*() for map and array
` [Tarantool-patches] [PATCH v5 33/52] sql: introduce mem_set_invalid()
` [Tarantool-patches] [PATCH v5 34/52] sql: refactor mem_set_ptr()
` [Tarantool-patches] [PATCH v5 35/52] sql: introduce mem_set_frame()
` [Tarantool-patches] [PATCH v5 36/52] sql: introduce mem_set_agg()
` [Tarantool-patches] [PATCH v5 37/52] sql: introduce mem_set_null_clear()
` [Tarantool-patches] [PATCH v5 38/52] sql: move MEM flags to mem.c
` [Tarantool-patches] [PATCH v5 39/52] sql: introduce mem_to_int*() functions
` [Tarantool-patches] [PATCH v5 40/52] sql: introduce mem_to_double()

[Tarantool-patches] [PATCH v21 0/6] box: implement box.lib Lua module
 2021-04-12 22:34 UTC  (22+ messages)
` [Tarantool-patches] [PATCH v21 1/6] box/func: fix modules functions restore
` [Tarantool-patches] [PATCH v21 2/6] box/func: module_reload -- drop redundant argument
` [Tarantool-patches] [PATCH v21 3/6] box/module_cache: introduce modules subsystem
` [Tarantool-patches] [PATCH v21 4/6] box/schema.func: switch to new module api
` [Tarantool-patches] [PATCH v21 5/6] box: implement box.lib module
` [Tarantool-patches] [PATCH v21 6/6] test: add box.lib test

[Tarantool-patches] [PATCH v2 0/9] raft: introduce manual elections and fix a bug with re-applying rolled back transactions
 2021-04-12 19:40 UTC  (10+ messages)
` [Tarantool-patches] [PATCH v2 1/9] wal: enrich row's meta information with sync replication flags
` [Tarantool-patches] [PATCH v2 2/9] xrow: introduce a PROMOTE entry
` [Tarantool-patches] [PATCH v2 3/9] box: actualise iproto_key_type array
` [Tarantool-patches] [PATCH v2 4/9] box: make clear_synchro_queue() write a PROMOTE entry instead of CONFIRM + ROLLBACK
` [Tarantool-patches] [PATCH v2 5/9] box: write PROMOTE even for empty limbo
` [Tarantool-patches] [PATCH v2 6/9] raft: keep track of greatest known term and filter replication sources based on that
` [Tarantool-patches] [PATCH v2 7/9] replication: introduce a new election mode: "manual"
` [Tarantool-patches] [PATCH v2 8/9] Support manual elections in `box.ctl.clear_synchro_queue()`
` [Tarantool-patches] [PATCH v2 9/9] box.ctl: rename clear_synchro_queue to promote

[Tarantool-patches] [PATCH 0/9] raft: introduce manual elections and fix a bug with re-applying rolled back transactions
 2021-04-12 19:24 UTC  (15+ messages)
` [Tarantool-patches] [PATCH 1/9] wal: enrich row's meta information with sync replication flags
` [Tarantool-patches] [PATCH 2/9] xrow: introduce a PROMOTE entry
` [Tarantool-patches] [PATCH 3/9] box: actualise iproto_key_type array
` [Tarantool-patches] [PATCH 4/9] box: make clear_synchro_queue() write a PROMOTE entry instead of CONFIRM + ROLLBACK
` [Tarantool-patches] [PATCH 5/9] box: write PROMOTE even for empty limbo
` [Tarantool-patches] [PATCH 6/9] raft: keep track of greatest known term and filter replication sources based on that
` [Tarantool-patches] [PATCH 7/9] replication: introduce a new election mode: "manual"
` [Tarantool-patches] [PATCH 8/9] Support manual elections in `box.ctl.clear_synchro_queue()`
` [Tarantool-patches] [PATCH 9/9] box.ctl: rename clear_synchro_queue to promote

[Tarantool-patches] [PATCH 0/2] Install curl headers and enable smtp
 2021-04-12 13:14 UTC  (9+ messages)
` [Tarantool-patches] [PATCH 1/2] build: "
` [Tarantool-patches] [PATCH 2/2] build: install libCURL headers

[Tarantool-patches] [PATCH v2 luajit 00/30] Adapt PUC-Rio Lua 5.1 test suite
 2021-04-12 10:26 UTC  (17+ messages)
` [Tarantool-patches] [PATCH v2 luajit 16/30] test: adapt PUC Lua test for %q in fmt for LuaJIT
` [Tarantool-patches] [PATCH v2 luajit 23/30] test: disable PUC Lua test for fast function name

[Tarantool-patches] [PATCH] box: set cfg via environment variables
 2021-04-12  9:52 UTC  (5+ messages)

[Tarantool-patches] [PATCH v2 0/5] send feedback on start and on key events
 2021-04-12  6:05 UTC  (13+ messages)
` [Tarantool-patches] [PATCH v2 1/5] feedback_daemon: include server uptime in the report
` [Tarantool-patches] [PATCH v2 2/5] feedback_daemon: rename `send_test` to `send`
` [Tarantool-patches] [PATCH v2 3/5] feedback_daemon: send feedback on server start
` [Tarantool-patches] [PATCH v2 4/5] feedback_daemon: generate report right before sending
` [Tarantool-patches] [PATCH v2 5/5] feedback_daemon: count and report some events

[Tarantool-patches] [PATCH v4] qsync: provide box.info.synchro interface for monitoring
 2021-04-12  5:59 UTC  (11+ messages)
      ` [Tarantool-patches] [PATCH v5] "

[Tarantool-patches] [PATCH 1/1] applier: process synchro rows after WAL write
 2021-04-09 21:32 UTC  (10+ messages)

[Tarantool-patches] [PATCH v5 41/52] sql: introduce mem_to_number()
 2021-04-09 21:08 UTC  (12+ messages)
` [Tarantool-patches] [PATCH v5 42/52] sql: introduce mem_to_str() and mem_to_str0()
` [Tarantool-patches] [PATCH v5 43/52] sql: introduce mem_cast_explicit()
` [Tarantool-patches] [PATCH v5 44/52] sql: introduce mem_cast_implicit()
` [Tarantool-patches] [PATCH v5 45/52] sql: introduce mem_get_int()
` [Tarantool-patches] [PATCH v5 46/52] sql: introduce mem_get_uint()
` [Tarantool-patches] [PATCH v5 47/52] sql: introduce mem_get_double()
` [Tarantool-patches] [PATCH v5 48/52] sql: introduce mem_get_bool()
` [Tarantool-patches] [PATCH v5 49/52] sql: introduce mem_get_str0() and mem_as_str0()
` [Tarantool-patches] [PATCH v5 50/52] sql: introduce mem_get_bin()
` [Tarantool-patches] [PATCH v5 51/52] sql: introduce mem_get_bytes_len()
` [Tarantool-patches] [PATCH v5 52/52] sql: introduce mem_get_agg()

[Tarantool-patches] [PATCH 0/3] Export curl symbols, enable smtp and install headers
 2021-04-09 19:54 UTC  (10+ messages)
` [Tarantool-patches] [PATCH 1/3] build: export libCURL symbols
` [Tarantool-patches] [PATCH 2/3] build: enable smtp in libCURL
` [Tarantool-patches] [PATCH 3/3] build: install libCURL headers

[Tarantool-patches] [PATCH v4 00/53] Move mem-related functions to mem.c/mem.h
 2021-04-09 19:52 UTC  (4+ messages)
` [Tarantool-patches] [PATCH v4 33/53] sql: introduce mem_append_to_binary()

[Tarantool-patches] [PATCH v2] qsync: provide box.info interface for monitoring
 2021-04-08 20:19 UTC  (14+ messages)
` [Tarantool-patches] [PATCH v3] "

[Tarantool-patches] [PATCH 0/4] send feedback on tarantool start
 2021-04-08 13:41 UTC  (6+ messages)
` [Tarantool-patches] [PATCH 3/4] feedback_daemon: send feedback on server start

[Tarantool-patches] [PATCH v2 luajit] tools: introduce --leak-only memprof parser option
 2021-04-08 12:49 UTC  (2+ messages)

[Tarantool-patches] [PATCH] luajit: bump new version
 2021-04-07 21:20 UTC  (6+ messages)

[Tarantool-patches] [PATCH luajit 0/3] Fix out-of-source testing on MacOS
 2021-04-07 21:17 UTC  (9+ messages)
` [Tarantool-patches] [PATCH luajit 2/3] test: make utils.selfrun usage easier
` [Tarantool-patches] [PATCH luajit 3/3] test: fix dynamic modules loading on MacOS

[Tarantool-patches] [PATCH v20 0/7] box: implement box.lib Lua module
 2021-04-07 21:04 UTC  (16+ messages)
` [Tarantool-patches] [PATCH v20 4/7] box/module_cache: introduce modules subsystem
` [Tarantool-patches] [PATCH v20 6/7] box: implement box.lib module

page:  |  | latest

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