Tarantool development patches archive
 help / color / mirror / Atom feed
[Tarantool-patches] [PATCH v1 00/21] Refactor non-standard and non-aggragate functions
 2021-10-25  8:33 UTC  (36+ messages)
` [Tarantool-patches] [PATCH v1 01/21] sql: refactor CHAR() function
` [Tarantool-patches] [PATCH v1 02/21] sql: refactor GREATEST() and LEAST() functions
` [Tarantool-patches] [PATCH v1 03/21] sql: refactor HEX() function
` [Tarantool-patches] [PATCH v1 04/21] sql: refactor LENGTH() function
` [Tarantool-patches] [PATCH v1 05/21] sql: refactor PRINTF() function
` [Tarantool-patches] [PATCH v1 06/21] sql: refactor RANDOM() function
` [Tarantool-patches] [PATCH v1 07/21] sql: rework RANDOMBLOB() function
` [Tarantool-patches] [PATCH v1 08/21] sql: refactor ZEROBLOB() function
` [Tarantool-patches] [PATCH v1 09/21] sql: refactor TYPEOF() function
` [Tarantool-patches] [PATCH v1 10/21] sql: refactor ROUND() function
` [Tarantool-patches] [PATCH v1 11/21] sql: refactor ROW_COUNT() function
` [Tarantool-patches] [PATCH v1 12/21] sql: rework UUID() function
` [Tarantool-patches] [PATCH v1 13/21] sql: refactor VERSION() function
` [Tarantool-patches] [PATCH v1 14/21] sql: refactor UNICODE() function
` [Tarantool-patches] [PATCH v1 15/21] sql: refactor of SOUNDEX() function
` [Tarantool-patches] [PATCH v1 16/21] sql: refactor REPLACE() function
` [Tarantool-patches] [PATCH v1 17/21] sql: refactor QUOTE() function
` [Tarantool-patches] [PATCH v1 18/21] sql: remove unused code
` [Tarantool-patches] [PATCH v1 19/21] sql: remove MEM_Dyn flag
` [Tarantool-patches] [PATCH v1 20/21] sql: remove MEM_Term flag
` [Tarantool-patches] [PATCH v1 21/21] sql: make arguments to be const

[Tarantool-patches] [PATCH v23 0/3] qsync: implement packet filtering (part 1)
 2021-10-24 16:01 UTC  (14+ messages)
` [Tarantool-patches] [PATCH v23 1/3] latch: add latch_is_locked helper
` [Tarantool-patches] [PATCH v23 2/3] qsync: order access to the limbo terms
` [Tarantool-patches] [PATCH v23 3/3] test: add gh-6036-qsync-order test

[Tarantool-patches] [PATCH v1 1/1] sql: introduce literals for DECIMAL
 2021-10-24 15:50 UTC  (4+ messages)

[Tarantool-patches] [PATCH] tuple: make tuple_bless() compilable
 2021-10-22 13:02 UTC 

[Tarantool-patches] [PATCH luajit] Add missing LJ_MAX_JSLOTS check
 2021-10-22 11:46 UTC 

[Tarantool-patches] [PATCH v1 0/8] Rework standard function
 2021-10-20 17:19 UTC  (22+ messages)
` [Tarantool-patches] [PATCH v1 1/8] sql: refactor ABS() funcion
` [Tarantool-patches] [PATCH v1 2/8] sql: refactor CHAR_LENGTH() function
` [Tarantool-patches] [PATCH v1 3/8] sql: refactor UPPER() and LOWER() functions
` [Tarantool-patches] [PATCH v1 4/8] sql: refactor NULLIF() function
` [Tarantool-patches] [PATCH v1 5/8] sql: rework TRIM() function
` [Tarantool-patches] [PATCH v1 6/8] sql: rework POSITION() function
` [Tarantool-patches] [PATCH v1 7/8] sql: rework SUBSTR() function
` [Tarantool-patches] [PATCH v1 8/8] sql: refactor LIKE() function

[Tarantool-patches] [PATCH] sql: Replaced naive position alg with KMP
 2021-10-20 12:01 UTC  (3+ messages)

[Tarantool-patches] [PATCH v4 00/16] sql: refactor aggregate functions
 2021-10-19 11:17 UTC  (37+ messages)
` [Tarantool-patches] [PATCH v4 01/16] sql: remove MEM_Zero flag from struct MEM
` [Tarantool-patches] [PATCH v4 02/16] sql: fix possible undefined behavior during cast
` [Tarantool-patches] [PATCH v4 03/16] sql: use register P1 for number of arguments
` [Tarantool-patches] [PATCH v4 04/16] sql: remove AggStep0 and OP_BuiltinFunction0
` [Tarantool-patches] [PATCH v4 05/16] sql: move collation to struct sql_context
` [Tarantool-patches] [PATCH v4 06/16] sql: introduce mem_append()
` [Tarantool-patches] [PATCH v4 07/16] sql: remove sql_vdbemem_finalize()
` [Tarantool-patches] [PATCH v4 08/16] sql: refactor SUM() function
` [Tarantool-patches] [PATCH v4 09/16] sql: refactor TOTAL() function
` [Tarantool-patches] [PATCH v4 10/16] sql: refactor AVG() function
` [Tarantool-patches] [PATCH v4 11/16] sql: refactor COUNT() function
` [Tarantool-patches] [PATCH v4 12/16] sql: refactor MIN() and MAX() functions
` [Tarantool-patches] [PATCH v4 13/16] sql: refactor GROUP_CONCAT() function
` [Tarantool-patches] [PATCH v4 14/16] sql: remove copying of result in finalizers
` [Tarantool-patches] [PATCH v4 15/16] sql: remove MEM_TYPE_AGG
` [Tarantool-patches] [PATCH v4 16/16] sql: remove field argv from struct sql_context

[Tarantool-patches] [PATCH v1 0/3] Fix some bugs with DECIMAL
 2021-10-19  6:19 UTC  (4+ messages)
` [Tarantool-patches] [PATCH v1 1/3] sql: fix truncation of DECIMAL in implicit cast
` [Tarantool-patches] [PATCH v1 2/3] sql: fix cast of small negative DECIMAL to INTEGER
` [Tarantool-patches] [PATCH v1 3/3] sql: do not truncate DECIMAL in LIMIT and OFFSET

[Tarantool-patches] [PATCH luajit] Fix FOLD rule for strength reduction of widening
 2021-10-18 18:53 UTC 

[Tarantool-patches] [PATCH luajit] Fix frame traversal for __gc handler frames
 2021-10-14  8:58 UTC  (4+ messages)

[Tarantool-patches] [PATCH v2 0/2] replication: fix reconnect on box.cfg.replication change
 2021-10-13 16:00 UTC  (9+ messages)
` [Tarantool-patches] [PATCH v2 1/2] replicaiton: make anon replica connect to quorum upon reconfiguration
` [Tarantool-patches] [PATCH v2 2/2] replication: fix replica disconnect "

[Tarantool-patches] [PATCH luajit] test: adapt disabled tests from PUC-Rio
 2021-10-13 15:55 UTC  (5+ messages)
    ` [Tarantool-patches] [PATCH luajit v2] "

[Tarantool-patches] [PATCH luajit] test: adapt test checking tail calls debug info
 2021-10-13 12:37 UTC  (3+ messages)
  ` [Tarantool-patches] [PATCH luajit v2] "

[Tarantool-patches] [PATCH v22 0/3] qsync: implement packet filtering (part 1)
 2021-10-13  8:20 UTC  (10+ messages)
` [Tarantool-patches] [PATCH v22 1/3] latch: add latch_is_locked helper
` [Tarantool-patches] [PATCH v22 2/3] qsync: order access to the limbo terms
` [Tarantool-patches] [PATCH v22 3/3] test: add gh-6036-qsync-order test

[Tarantool-patches] [PATCH luajit] test: adapt test checking reversed function
 2021-10-12  8:16 UTC  (4+ messages)

[Tarantool-patches] [PATCH luajit] test: adapt tests checking loading bytecode files
 2021-10-12  8:13 UTC  (4+ messages)

[Tarantool-patches] [PATCH v1 0/3] Fix some bugs with DECIMAL
 2021-10-11 21:58 UTC  (7+ messages)
` [Tarantool-patches] [PATCH v1 1/3] sql: fix truncation of DECIMAL in implicit cast
` [Tarantool-patches] [PATCH v1 2/3] sql: fix cast of small negative DECIMAL to INTEGER
` [Tarantool-patches] [PATCH v1 3/3] sql: do not truncate DECIMAL in LIMIT and OFFSET

[Tarantool-patches] [PATCH luajit] test: adapt tests checking debug line hook trace
 2021-10-11 15:19 UTC  (2+ messages)

[Tarantool-patches] [PATCH luajit] test: adapt tests checking traceback in tail call
 2021-10-11 15:11 UTC  (2+ messages)

[Tarantool-patches] [PATCH v21 0/3] qsync: implement packet filtering (part 1)
 2021-10-11 13:38 UTC  (6+ messages)
` [Tarantool-patches] [PATCH v21 1/3] latch: add latch_is_locked helper
` [Tarantool-patches] [PATCH v21 2/3] qsync: order access to the limbo terms
` [Tarantool-patches] [PATCH v21 3/3] test: add gh-6036-qsync-order test

[Tarantool-patches] [PATCH v20 0/3] qsync: implement packet filtering (part 1)
 2021-10-08  2:57 UTC  (6+ messages)
` [Tarantool-patches] [PATCH v20 1/3] latch: add latch_is_locked helper
` [Tarantool-patches] [PATCH v20 2/3] qsync: order access to the limbo terms
` [Tarantool-patches] [PATCH v20 3/3] test: add gh-6036-qsync-order test

[Tarantool-patches] [PATCH luajit 0/7] misc: introduce sysprof
 2021-10-07 11:28 UTC  (8+ messages)
` [Tarantool-patches] [PATCH luajit 5/7] memprof: add profile common section
    ` [Tarantool-patches] [PATCH luajit v2] "
` [Tarantool-patches] [PATCH luajit 6/7] sysprof: introduce Lua API
` [Tarantool-patches] [PATCH luajit 7/7] tools: introduce parsers for sysprof

[Tarantool-patches] [PATCH 0/2] replication: fix reconnect on box.cfg.replication change
 2021-10-06 21:59 UTC  (7+ messages)
` [Tarantool-patches] [PATCH 2/2] replication: fix replica disconnect upon reconfiguration

[Tarantool-patches] [PATCH luajit] test: adapt test checking global environment
 2021-10-06 13:04 UTC 

[Tarantool-patches] [PATCH v2] replication: removing anonymous replicas from synchro quorum
 2021-10-06  8:44 UTC 

[Tarantool-patches] [PATCH v2] replication: the truncate method called from within a transaction
 2021-10-06  8:39 UTC 

[Tarantool-patches] [PATCH v19 0/3] qsync: implement packet filtering (part 1)
 2021-10-06  7:06 UTC  (15+ messages)
` [Tarantool-patches] [PATCH v19 2/3] qsync: order access to the limbo terms
` [Tarantool-patches] [PATCH v19 3/3] test: add gh-6036-qsync-order test

[Tarantool-patches] [PATCH luajit] test: adapt test checking global environment
 2021-10-05 17:37 UTC  (2+ messages)

[Tarantool-patches] [PATCH v1 1/1] sql: fix a segfault in hex() on receiving zeroblob
 2021-10-05 12:49 UTC 

[Tarantool-patches] [PATCH v1 1/1] schema: remove assert on wrong insert into _priv
 2021-10-05 12:13 UTC  (2+ messages)

[Tarantool-patches] [PATCH vshard 0/2] VShard new netbox
 2021-10-01 21:14 UTC  (2+ 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