From: Mergen Imeev <imeevma@tarantool.org> To: Nikita Pettik <korablev@tarantool.org> Cc: tarantool-patches@dev.tarantool.org, Vladislav Shpilevoy <v.shpilevoy@tarantool.org> Subject: Re: [Tarantool-patches] [PATCH v1 1/1] sql: remove implicit cast for COMPARISON Date: Mon, 30 Mar 2020 19:53:13 +0300 [thread overview] Message-ID: <20200330165313.GA14800@tarantool.org> (raw) In-Reply-To: <20200330113805.GA18954@tarantool.org> On Mon, Mar 30, 2020 at 11:38:06AM +0000, Nikita Pettik wrote: > On 30 Mar 00:29, Vladislav Shpilevoy wrote: > > Hi! Thanks for the patch! > > > > See 15 comments below. > > > > I don't think I understood all the changed (because I am very out of > > context), so I will revisited many of them when you send v2. > > > > On 20/03/2020 13:34, imeevma@tarantool.org wrote: > > > This patch removes implicit cast for comparison. Also, it make > > > search using an index work the same way as in case of fullscan in > > > most cases. > > > > > > Closes #4230 > > > Closes #4783 > > > --- > > > https://github.com/tarantool/tarantool/issues/4230 > > > https://github.com/tarantool/tarantool/issues/4783 > > > https://github.com/tarantool/tarantool/tree/imeevma/gh-4230-remove-implicit-cast-for-index-search-second > > > > > > @ChangeLog Remove implicit cast for comparison gh-4230 > > > > 1. Worth adding more details. What implicit cast? All of them? > > > > Do we need a docbot request for this? > > We definitely do need a docbot request. What is more, I'd explicitly > agree all user-visible changes introduced in this patch with Peter > Gulutzan. If Peter is already OK with it, Mergen, could you please > copy link to the corresponding mail (cause I've a bit lost in all > 'cast' threads). > Ok, I will do all these in the next version of the patch. > > > diff --git a/src/box/sql/sqlInt.h b/src/box/sql/sqlInt.h > > > index 1579cc9..cd626bd 100644 > > > --- a/src/box/sql/sqlInt.h > > > +++ b/src/box/sql/sqlInt.h > > > @@ -1304,6 +1304,9 @@ enum trim_side_mask { > > > (X) == FIELD_TYPE_UNSIGNED || \ > > > (X) == FIELD_TYPE_DOUBLE) > > > > > > +#define sql_mp_type_is_numeric(X) ((X) == MP_INT || (X) == MP_UINT || \ > > > + (X) == MP_FLOAT || (X) == MP_DOUBLE) > > > > > > 7. Is there a ticket to stop conveting MEM_* to MP_*? > > Hm, I thought I created once such ticket, but in fact failed to > find it. If you are OK with suggestion below concerning splitting > mem type into two members, I'll open an issue. > Does anyony mind if I do all this here, before main patch-set? > > MP_* now contains all MEM_* and even more, right? > > Not exactly. There are also VDBE specific MEMs like > MEM_Frame, MEM_Cleared, MEM_TypeMask etc, and auxiliary > MEMs - MEM_Dyn, MEM_Static, MEM_Ephem (i.e. allocation policy), > MEM_Subtype, MEM_Agg and so forth. I guess still we can split > struct mem->type into mp_type and aux_flags. >
next prev parent reply other threads:[~2020-03-30 16:53 UTC|newest] Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-03-20 12:34 imeevma 2020-03-29 22:29 ` Vladislav Shpilevoy 2020-03-30 11:38 ` Nikita Pettik 2020-03-30 16:53 ` Mergen Imeev [this message] 2020-04-02 23:47 ` Vladislav Shpilevoy 2020-04-21 12:42 ` Mergen Imeev 2020-04-26 18:22 ` Vladislav Shpilevoy -- strict thread matches above, loose matches on Subject: below -- 2020-02-20 8:00 imeevma
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=20200330165313.GA14800@tarantool.org \ --to=imeevma@tarantool.org \ --cc=korablev@tarantool.org \ --cc=tarantool-patches@dev.tarantool.org \ --cc=v.shpilevoy@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH v1 1/1] sql: remove implicit cast for COMPARISON' \ /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