Tarantool development patches archive
 help / color / mirror / Atom feed
From: Mergen Imeev via Tarantool-patches <tarantool-patches@dev.tarantool.org>
To: v.shpilevoy@tarantool.org, tsafin@tarantool.org,
	tarantool-patches@dev.tarantool.org
Subject: Re: [Tarantool-patches] [PATCH v5 38/52] sql: move MEM flags to mem.c
Date: Tue, 13 Apr 2021 23:42:00 +0300	[thread overview]
Message-ID: <20210413204200.GA21092@tarantool.org> (raw)
In-Reply-To: <670c9835e020f49a67ee8ade81fbf59dd0062beb.1617984948.git.imeevma@gmail.com>

On new branch I dropped this commit. Please see my answer to
"sql: introduce mem_is_*() functions()".

On Fri, Apr 09, 2021 at 11:25:55PM +0300, Mergen Imeev via Tarantool-patches wrote:
> Thank you for the review! My answers and new patch below.
> 
> 
> On 30.03.2021 02:07, Vladislav Shpilevoy wrote:
> > Thanks for the patch!
> >
> >> diff --git a/src/box/sql/mem.h b/src/box/sql/mem.h
> >> index 70224b55a..8b6f6749d 100644
> >> --- a/src/box/sql/mem.h
> >> +++ b/src/box/sql/mem.h
> >> @@ -563,13 +511,6 @@ columnNullValue(void);
> >>  
> >>  int sqlVdbeMemTooBig(Mem *);
> >>  
> >> -/* Return TRUE if Mem X contains dynamically allocated content - anything
> >> - * that needs to be deallocated to avoid a leak.
> >> - */
> >> -#define VdbeMemDynamic(X)  \
> >> -  (((X)->flags&(MEM_Agg|MEM_Dyn|MEM_Frame))!=0)
> >
> > Why did you remove that? And why don't you have MEM_Agg|MEM_Frame in
> > mem_is_dynamic()?
> Function mem_is_dynamic() shows allocation type of MEM contains STRING or
> VARBINARY. Macro VdbeMemDynamic() shows that MEM should be cleared before
> changing. This macro is not needed now outside of mem.c since all settings there
> should be done using mem_set_*() functions, which clear MEM before changing.
> In mem.c this macro may be added in case we set MEM directly, however we inline
> mem_set_*() only in cases when we know that there is no clearing needed. Not
> sure that this macro is needed after all.
> 
> There is one place where MEM is set without mem_set_*() outside of mem.c - in
> function allocateCursor(). However, the way MEM is used here is so different
> from normal way of using MEM, that I am not sure that VdbeMemDynamic() is
> actually proper there.
> 
> 
> New patch:
> 
> commit 670c9835e020f49a67ee8ade81fbf59dd0062beb
> Author: Mergen Imeev <imeevma@gmail.com>
> Date:   Wed Mar 17 10:19:57 2021 +0300
> 
>     sql: move MEM flags to mem.c
>     
>     This patch moves MEM flags to mem.c. This allow us to have more control
>     over MEM state.
>     
>     Part of #5818
> 
> diff --git a/src/box/sql/mem.c b/src/box/sql/mem.c
> index 2e147291f..52b1891aa 100644
> --- a/src/box/sql/mem.c
> +++ b/src/box/sql/mem.c
> @@ -52,6 +52,57 @@
>  static int
>  sqlVdbeMemGrow(struct Mem *pMem, int n, int preserve);
>  
> +/* One or more of the following flags are set to indicate the validOK
> + * representations of the value stored in the Mem struct.
> + *
> + * If the MEM_Null flag is set, then the value is an SQL NULL value.
> + * No other flags may be set in this case.
> + *
> + * If the MEM_Str flag is set then Mem.z points at a string representation.
> + * Usually this is encoded in the same unicode encoding as the main
> + * database (see below for exceptions). If the MEM_Term flag is also
> + * set, then the string is nul terminated. The MEM_Int and MEM_Real
> + * flags may coexist with the MEM_Str flag.
> + */
> +#define MEM_Null      0x0001	/* Value is NULL */
> +#define MEM_Str       0x0002	/* Value is a string */
> +#define MEM_Int       0x0004	/* Value is an integer */
> +#define MEM_Real      0x0008	/* Value is a real number */
> +#define MEM_Blob      0x0010	/* Value is a BLOB */
> +#define MEM_Bool      0x0020    /* Value is a bool */
> +#define MEM_UInt      0x0040	/* Value is an unsigned integer */
> +#define MEM_Frame     0x0080	/* Value is a VdbeFrame object */
> +#define MEM_Undefined 0x0100	/* Value is undefined */
> +#define MEM_Cleared   0x0200	/* NULL set by OP_Null, not from data */
> +#define MEM_TypeMask  0x83ff	/* Mask of type bits */
> +
> +/* Whenever Mem contains a valid string or blob representation, one of
> + * the following flags must be set to determine the memory management
> + * policy for Mem.z.  The MEM_Term flag tells us whether or not the
> + * string is \000 or \u0000 terminated
> + */
> +#define MEM_Term      0x0400	/* String rep is nul terminated */
> +#define MEM_Dyn       0x0800	/* Need to call Mem.xDel() on Mem.z */
> +#define MEM_Static    0x1000	/* Mem.z points to a static string */
> +#define MEM_Ephem     0x2000	/* Mem.z points to an ephemeral string */
> +#define MEM_Agg       0x4000	/* Mem.z points to an agg function context */
> +#define MEM_Zero      0x8000	/* Mem.i contains count of 0s appended to blob */
> +#define MEM_Subtype   0x10000	/* Mem.eSubtype is valid */
> +#define MEM_Ptr       0x20000	/* Value is a generic pointer */
> +
> +/**
> + * In contrast to Mem_TypeMask, this one allows to get
> + * pure type of memory cell, i.e. without _Dyn/_Zero and other
> + * auxiliary flags.
> + */
> +enum {
> +	MEM_PURE_TYPE_MASK = 0x7f
> +};
> +
> +static_assert(MEM_PURE_TYPE_MASK == (MEM_Null | MEM_Str | MEM_Int | MEM_Real |
> +				     MEM_Blob | MEM_Bool | MEM_UInt),
> +	      "value of type mask must consist of corresponding to memory "\
> +	      "type bits");
>  
>  bool
>  mem_is_null(const struct Mem *mem)
> diff --git a/src/box/sql/mem.h b/src/box/sql/mem.h
> index f17c4bb78..ce5076361 100644
> --- a/src/box/sql/mem.h
> +++ b/src/box/sql/mem.h
> @@ -473,58 +473,6 @@ int
>  mem_compare(const struct Mem *left, const struct Mem *right, int *result,
>  	    enum field_type type, struct coll *coll);
>  
> -/* One or more of the following flags are set to indicate the validOK
> - * representations of the value stored in the Mem struct.
> - *
> - * If the MEM_Null flag is set, then the value is an SQL NULL value.
> - * No other flags may be set in this case.
> - *
> - * If the MEM_Str flag is set then Mem.z points at a string representation.
> - * Usually this is encoded in the same unicode encoding as the main
> - * database (see below for exceptions). If the MEM_Term flag is also
> - * set, then the string is nul terminated. The MEM_Int and MEM_Real
> - * flags may coexist with the MEM_Str flag.
> - */
> -#define MEM_Null      0x0001	/* Value is NULL */
> -#define MEM_Str       0x0002	/* Value is a string */
> -#define MEM_Int       0x0004	/* Value is an integer */
> -#define MEM_Real      0x0008	/* Value is a real number */
> -#define MEM_Blob      0x0010	/* Value is a BLOB */
> -#define MEM_Bool      0x0020    /* Value is a bool */
> -#define MEM_UInt      0x0040	/* Value is an unsigned integer */
> -#define MEM_Frame     0x0080	/* Value is a VdbeFrame object */
> -#define MEM_Undefined 0x0100	/* Value is undefined */
> -#define MEM_Cleared   0x0200	/* NULL set by OP_Null, not from data */
> -#define MEM_TypeMask  0x83ff	/* Mask of type bits */
> -
> -/* Whenever Mem contains a valid string or blob representation, one of
> - * the following flags must be set to determine the memory management
> - * policy for Mem.z.  The MEM_Term flag tells us whether or not the
> - * string is \000 or \u0000 terminated
> - */
> -#define MEM_Term      0x0400	/* String rep is nul terminated */
> -#define MEM_Dyn       0x0800	/* Need to call Mem.xDel() on Mem.z */
> -#define MEM_Static    0x1000	/* Mem.z points to a static string */
> -#define MEM_Ephem     0x2000	/* Mem.z points to an ephemeral string */
> -#define MEM_Agg       0x4000	/* Mem.z points to an agg function context */
> -#define MEM_Zero      0x8000	/* Mem.i contains count of 0s appended to blob */
> -#define MEM_Subtype   0x10000	/* Mem.eSubtype is valid */
> -#define MEM_Ptr       0x20000	/* Value is a generic pointer */
> -
> -/**
> - * In contrast to Mem_TypeMask, this one allows to get
> - * pure type of memory cell, i.e. without _Dyn/_Zero and other
> - * auxiliary flags.
> - */
> -enum {
> -	MEM_PURE_TYPE_MASK = 0x7f
> -};
> -
> -static_assert(MEM_PURE_TYPE_MASK == (MEM_Null | MEM_Str | MEM_Int | MEM_Real |
> -				     MEM_Blob | MEM_Bool | MEM_UInt),
> -	      "value of type mask must consist of corresponding to memory "\
> -	      "type bits");
> -
>  /**
>   * Simple type to str convertor. It is used to simplify
>   * error reporting.
> @@ -555,7 +503,7 @@ registerTrace(int iReg, Mem *p);
>   * Return true if a memory cell is not marked as invalid.  This macro
>   * is for use inside assert() statements only.
>   */
> -#define memIsValid(M)  ((M)->flags & MEM_Undefined)==0
> +#define memIsValid(M) !mem_is_invalid(M)
>  #endif
>  
>  /**
> @@ -589,7 +537,7 @@ int mem_apply_integer_type(struct Mem *);
>  int sqlVdbeMemStringify(struct Mem *);
>  int sqlVdbeMemNulTerminate(struct Mem *);
>  int sqlVdbeMemExpandBlob(struct Mem *);
> -#define ExpandBlob(P) (((P)->flags&MEM_Zero)?sqlVdbeMemExpandBlob(P):0)
> +#define ExpandBlob(P) (mem_is_zerobin(P)? sqlVdbeMemExpandBlob(P) : 0)
>  void sql_value_apply_type(struct Mem *val, enum field_type type);
>  
>  
> @@ -700,13 +648,6 @@ columnNullValue(void);
>  
>  int sqlVdbeMemTooBig(Mem *);
>  
> -/* Return TRUE if Mem X contains dynamically allocated content - anything
> - * that needs to be deallocated to avoid a leak.
> - */
> -#define VdbeMemDynamic(X)  \
> -  (((X)->flags&(MEM_Agg|MEM_Dyn|MEM_Frame))!=0)
> -
> -
>  int sqlMemCompare(const Mem *, const Mem *, const struct coll *);
>  
>  /**
> diff --git a/src/box/sql/vdbe.c b/src/box/sql/vdbe.c
> index 4566606d7..71a827034 100644
> --- a/src/box/sql/vdbe.c
> +++ b/src/box/sql/vdbe.c
> @@ -607,7 +607,6 @@ case OP_SetDiag: {             /* jump */
>  case OP_Gosub: {            /* jump */
>  	assert(pOp->p1>0 && pOp->p1<=(p->nMem+1 - p->nCursor));
>  	pIn1 = &aMem[pOp->p1];
> -	assert(VdbeMemDynamic(pIn1)==0);
>  	memAboutToChange(p, pIn1);
>  	mem_set_uint(pIn1, pOp - aOp);
>  	REGISTER_TRACE(p, pOp->p1, pIn1);
> @@ -649,7 +648,6 @@ case OP_InitCoroutine: {     /* jump */
>  	assert(pOp->p2>=0 && pOp->p2<p->nOp);
>  	assert(pOp->p3>0 && pOp->p3<p->nOp);
>  	pOut = &aMem[pOp->p1];
> -	assert(!VdbeMemDynamic(pOut));
>  	mem_set_uint(pOut, pOp->p3 - 1);
>  	if (pOp->p2) goto jump_to_p2;
>  	break;
> @@ -691,7 +689,6 @@ case OP_EndCoroutine: {           /* in1 */
>   */
>  case OP_Yield: {            /* in1, jump */
>  	pIn1 = &aMem[pOp->p1];
> -	assert(VdbeMemDynamic(pIn1)==0);
>  	int pcDest = (int)pIn1->u.u;
>  	mem_set_uint(pIn1, pOp - aOp);
>  	REGISTER_TRACE(p, pOp->p1, pIn1);

  reply	other threads:[~2021-04-13 20:42 UTC|newest]

Thread overview: 107+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-09 16:51 [Tarantool-patches] [PATCH v5 00/52] Move mem-related functions to mem.c/mem.h Mergen Imeev via Tarantool-patches
2021-04-09 16:51 ` [Tarantool-patches] [PATCH v5 01/52] sql: enhance vdbe_decode_msgpack_into_mem() Mergen Imeev via Tarantool-patches
2021-04-11 17:42   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 12:01     ` Mergen Imeev via Tarantool-patches
2021-04-13 12:12       ` Mergen Imeev via Tarantool-patches
2021-04-13 23:22       ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 23:34         ` Mergen Imeev via Tarantool-patches
2021-04-09 16:51 ` [Tarantool-patches] [PATCH v5 02/52] sql: disable unused code in sql/analyze.c Mergen Imeev via Tarantool-patches
2021-04-09 16:51 ` [Tarantool-patches] [PATCH v5 03/52] sql: disable unused code in sql/legacy.c Mergen Imeev via Tarantool-patches
2021-04-09 16:51 ` [Tarantool-patches] [PATCH v5 04/52] sql: remove NULL-termination in OP_ResultRow Mergen Imeev via Tarantool-patches
2021-04-14 22:23   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-14 22:37     ` Mergen Imeev via Tarantool-patches
2021-04-09 16:51 ` [Tarantool-patches] [PATCH v5 05/52] sql: move MEM-related functions to mem.c/mem.h Mergen Imeev via Tarantool-patches
2021-04-09 16:59 ` [Tarantool-patches] [PATCH v5 06/52] sql: refactor port_vdbemem_*() functions Mergen Imeev via Tarantool-patches
2021-04-09 16:59 ` [Tarantool-patches] [PATCH v5 07/52] sql: remove unused MEM-related functions Mergen Imeev via Tarantool-patches
2021-04-09 16:59 ` [Tarantool-patches] [PATCH v5 08/52] sql: disable unused code in sql/vdbemem.c Mergen Imeev via Tarantool-patches
2021-04-09 16:59 ` [Tarantool-patches] [PATCH v5 09/52] sql: introduce mem_str() Mergen Imeev via Tarantool-patches
2021-04-11 17:44   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 12:36     ` Mergen Imeev via Tarantool-patches
2021-04-14 22:23       ` Vladislav Shpilevoy via Tarantool-patches
2021-04-14 22:42         ` Mergen Imeev via Tarantool-patches
2021-04-09 16:59 ` [Tarantool-patches] [PATCH v5 10/52] sql: introduce mem_create() Mergen Imeev via Tarantool-patches
2021-04-09 17:36 ` [Tarantool-patches] [PATCH v5 11/52] sql: introduce mem_destroy() Mergen Imeev via Tarantool-patches
2021-04-11 17:46   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 12:42     ` Mergen Imeev via Tarantool-patches
2021-04-09 17:36 ` [Tarantool-patches] [PATCH v5 12/52] sql: introduce mem_is_*() functions() Mergen Imeev via Tarantool-patches
2021-04-11 17:59   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 16:09     ` Mergen Imeev via Tarantool-patches
2021-04-14 22:48       ` Vladislav Shpilevoy via Tarantool-patches
2021-04-14 23:07         ` Mergen Imeev via Tarantool-patches
2021-04-09 17:36 ` [Tarantool-patches] [PATCH v5 13/52] sql: introduce mem_copy() Mergen Imeev via Tarantool-patches
2021-04-11 18:06   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 16:18     ` Mergen Imeev via Tarantool-patches
2021-04-09 17:36 ` [Tarantool-patches] [PATCH v5 14/52] sql: introduce mem_copy_as_ephemeral() Mergen Imeev via Tarantool-patches
2021-04-11 18:10   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 16:31     ` Mergen Imeev via Tarantool-patches
2021-04-09 17:37 ` [Tarantool-patches] [PATCH v5 15/52] sql: rework mem_move() Mergen Imeev via Tarantool-patches
2021-04-11 18:10   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 16:38     ` Mergen Imeev via Tarantool-patches
2021-04-09 17:57 ` [Tarantool-patches] [PATCH v5 16/52] sql: rework vdbe_decode_msgpack_into_mem() Mergen Imeev via Tarantool-patches
2021-04-09 17:57 ` [Tarantool-patches] [PATCH v5 17/52] sql: remove sql_column_to_messagepack() Mergen Imeev via Tarantool-patches
2021-04-14 22:58   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-14 23:14     ` Mergen Imeev via Tarantool-patches
2021-04-09 17:57 ` [Tarantool-patches] [PATCH v5 18/52] sql: introduce mem_concat() Mergen Imeev via Tarantool-patches
2021-04-11 18:11   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 16:57     ` Mergen Imeev via Tarantool-patches
2021-04-14 23:04       ` Vladislav Shpilevoy via Tarantool-patches
2021-04-14 23:22         ` Mergen Imeev via Tarantool-patches
2021-04-09 17:57 ` [Tarantool-patches] [PATCH v5 19/52] sql: introduce arithmetic operations for MEM Mergen Imeev via Tarantool-patches
2021-04-11 18:13   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 17:06     ` Mergen Imeev via Tarantool-patches
2021-04-14 23:10       ` Vladislav Shpilevoy via Tarantool-patches
2021-04-14 23:33         ` Mergen Imeev via Tarantool-patches
2021-04-09 17:57 ` [Tarantool-patches] [PATCH v5 20/52] sql: introduce mem_compare() Mergen Imeev via Tarantool-patches
2021-04-11 18:16   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 18:33     ` Mergen Imeev via Tarantool-patches
2021-04-14 23:20       ` Vladislav Shpilevoy via Tarantool-patches
2021-04-14 23:40         ` Mergen Imeev via Tarantool-patches
2021-04-09 18:11 ` [Tarantool-patches] [PATCH v5 21/52] sql: introduce bitwise operations for MEM Mergen Imeev via Tarantool-patches
2021-04-12 23:31   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 20:49     ` Mergen Imeev via Tarantool-patches
2021-04-09 18:11 ` [Tarantool-patches] [PATCH v5 22/52] sql: Initialize MEM in sqlVdbeAllocUnpackedRecord() Mergen Imeev via Tarantool-patches
2021-04-09 18:11 ` [Tarantool-patches] [PATCH v5 23/52] sql: introduce mem_set_null() Mergen Imeev via Tarantool-patches
2021-04-09 18:11 ` [Tarantool-patches] [PATCH v5 24/52] sql: introduce mem_set_int() Mergen Imeev via Tarantool-patches
2021-04-12 23:32   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 20:56     ` Mergen Imeev via Tarantool-patches
2021-04-09 18:11 ` [Tarantool-patches] [PATCH v5 25/52] sql: introduce mem_set_uint() Mergen Imeev via Tarantool-patches
2021-04-09 19:45 ` [Tarantool-patches] [PATCH v5 26/52] sql: move mem_set_bool() and mem_set_double() Mergen Imeev via Tarantool-patches
2021-04-09 19:45 ` [Tarantool-patches] [PATCH v5 27/52] sql: introduce mem_set_str_*() functions Mergen Imeev via Tarantool-patches
2021-04-12 23:34   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 21:36     ` Mergen Imeev via Tarantool-patches
2021-04-14 23:49       ` Vladislav Shpilevoy via Tarantool-patches
2021-04-15  1:25         ` Mergen Imeev via Tarantool-patches
2021-04-09 19:45 ` [Tarantool-patches] [PATCH v5 28/52] sql: introduce mem_copy_str() and mem_copy_str0() Mergen Imeev via Tarantool-patches
2021-04-12 23:35   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 22:00     ` Mergen Imeev via Tarantool-patches
2021-04-14 23:54       ` Vladislav Shpilevoy via Tarantool-patches
2021-04-15  0:30         ` Mergen Imeev via Tarantool-patches
2021-04-09 19:45 ` [Tarantool-patches] [PATCH v5 29/52] sql: introduce mem_set_bin_*() functions Mergen Imeev via Tarantool-patches
2021-04-09 19:45 ` [Tarantool-patches] [PATCH v5 30/52] sql: introduce mem_copy_bin() Mergen Imeev via Tarantool-patches
2021-04-12 23:36   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 22:06     ` Mergen Imeev via Tarantool-patches
2021-04-09 20:05 ` [Tarantool-patches] [PATCH v5 31/52] sql: introduce mem_set_zerobin() Mergen Imeev via Tarantool-patches
2021-04-09 20:05 ` [Tarantool-patches] [PATCH v5 32/52] sql: introduce mem_set_*() for map and array Mergen Imeev via Tarantool-patches
2021-04-12 23:36   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 22:08     ` Mergen Imeev via Tarantool-patches
2021-04-09 20:05 ` [Tarantool-patches] [PATCH v5 33/52] sql: introduce mem_set_invalid() Mergen Imeev via Tarantool-patches
2021-04-09 20:05 ` [Tarantool-patches] [PATCH v5 34/52] sql: refactor mem_set_ptr() Mergen Imeev via Tarantool-patches
2021-04-09 20:05 ` [Tarantool-patches] [PATCH v5 35/52] sql: introduce mem_set_frame() Mergen Imeev via Tarantool-patches
2021-04-12 23:37   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 22:19     ` Mergen Imeev via Tarantool-patches
2021-04-09 20:25 ` [Tarantool-patches] [PATCH v5 36/52] sql: introduce mem_set_agg() Mergen Imeev via Tarantool-patches
2021-04-12 23:37   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 22:46     ` Mergen Imeev via Tarantool-patches
2021-04-09 20:25 ` [Tarantool-patches] [PATCH v5 37/52] sql: introduce mem_set_null_clear() Mergen Imeev via Tarantool-patches
2021-04-12 23:38   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 22:50     ` Mergen Imeev via Tarantool-patches
2021-04-09 20:25 ` [Tarantool-patches] [PATCH v5 38/52] sql: move MEM flags to mem.c Mergen Imeev via Tarantool-patches
2021-04-13 20:42   ` Mergen Imeev via Tarantool-patches [this message]
2021-04-09 20:25 ` [Tarantool-patches] [PATCH v5 39/52] sql: introduce mem_to_int*() functions Mergen Imeev via Tarantool-patches
2021-04-12 23:39   ` Vladislav Shpilevoy via Tarantool-patches
2021-04-13 22:58     ` Mergen Imeev via Tarantool-patches
2021-04-13 23:10       ` Mergen Imeev via Tarantool-patches
2021-04-09 20:26 ` [Tarantool-patches] [PATCH v5 40/52] sql: introduce mem_to_double() Mergen Imeev via Tarantool-patches
2021-04-13 23:21   ` Mergen Imeev via Tarantool-patches
2021-04-15  0:39 ` [Tarantool-patches] [PATCH v5 00/52] Move mem-related functions to mem.c/mem.h Vladislav Shpilevoy via Tarantool-patches
2021-04-15  6:49 ` Kirill Yukhin via Tarantool-patches

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210413204200.GA21092@tarantool.org \
    --to=tarantool-patches@dev.tarantool.org \
    --cc=imeevma@tarantool.org \
    --cc=tsafin@tarantool.org \
    --cc=v.shpilevoy@tarantool.org \
    --subject='Re: [Tarantool-patches] [PATCH v5 38/52] sql: move MEM flags to mem.c' \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

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