From: Nikita Pettik <korablev@tarantool.org>
To: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Cc: tarantool-patches@dev.tarantool.org
Subject: Re: [Tarantool-patches] [PATCH v2 4/6] sql: extend result set with nullability
Date: Tue, 24 Dec 2019 03:26:12 +0300 [thread overview]
Message-ID: <20191224002612.GA16901@tarantool.org> (raw)
In-Reply-To: <e09efa05-e9bf-3984-3dd4-13a8855ffaa4@tarantool.org>
On 18 Dec 01:29, Vladislav Shpilevoy wrote:
> Thanks for the patch!
>
> See 2 comments below.
>
> > diff --git a/src/box/sql/delete.c b/src/box/sql/delete.c
> > index 169814a2e..cc5891bb8 100644
> > --- a/src/box/sql/delete.c
> > +++ b/src/box/sql/delete.c
> > @@ -420,6 +420,7 @@ sql_table_delete_from(struct Parse *parse, struct SrcList *tab_list,
> > sqlVdbeSetNumCols(v, 1);
> > vdbe_metadata_set_col_name(v, 0, "rows deleted");
> > vdbe_metadata_set_col_type(v, 0, "integer");
> > + vdbe_metadata_set_col_nullability(v, 0, -1);
>
> 1. All these set_col_nullability(-1) look really doubtful. You
> don't set collation NULL explicitly, but you set nullability -1
> explicitly. Why?
>
> I think it is much better to fill default values of newly allocated
> sql_column_metadata in sqlVdbeSetNumCols. See my diff (not on the
> branch):
Looks reasonable. Thx, applied.
> ==================================================================
>
> > diff --git a/src/box/sql/vdbeInt.h b/src/box/sql/vdbeInt.h
> > index d3de5770b..92a50dd7b 100644
> > --- a/src/box/sql/vdbeInt.h
> > +++ b/src/box/sql/vdbeInt.h
> > @@ -350,6 +350,11 @@ struct sql_column_metadata {
> > char *name;
> > char *type;
> > char *collation;
> > + /**
> > + * -1 is for any member of result set except for pure
> > + * columns: all other expressions are nullable by default.
> > + */
> > + int8_t nullable : 2;
>
> 2. What is a point of having it :2 bits, if you don't
> have other flags in the same byte? Due to alignment
> this member anyway will become 1 byte.
I guess it's an artifact of one of previous iteration of review fixes
or of the original patch. Anyway, removed this bit field.
next prev parent reply other threads:[~2019-12-24 0:26 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-11 13:44 [Tarantool-patches] [PATCH v2 0/6] sql: extended metadata Nikita Pettik
[not found] ` <cover.1576071711.git.korablev@tarantool.org>
2019-12-11 13:44 ` [Tarantool-patches] [PATCH v2 1/6] sql: refactor resulting set metadata Nikita Pettik
2019-12-11 13:44 ` [Tarantool-patches] [PATCH v2 2/6] sql: fix possible null dereference in sql_expr_coll() Nikita Pettik
2019-12-11 13:44 ` [Tarantool-patches] [PATCH v2 3/6] sql: extend result set with collation Nikita Pettik
2019-12-18 0:29 ` Vladislav Shpilevoy
2019-12-24 0:26 ` Nikita Pettik
2019-12-24 15:30 ` Vladislav Shpilevoy
2019-12-11 13:44 ` [Tarantool-patches] [PATCH v2 4/6] sql: extend result set with nullability Nikita Pettik
2019-12-18 0:29 ` Vladislav Shpilevoy
2019-12-24 0:26 ` Nikita Pettik [this message]
2019-12-11 13:44 ` [Tarantool-patches] [PATCH v2 5/6] sql: extend result set with autoincrement Nikita Pettik
2019-12-18 0:29 ` Vladislav Shpilevoy
2019-12-24 0:26 ` Nikita Pettik
2019-12-24 15:30 ` Vladislav Shpilevoy
2019-12-25 12:17 ` Nikita Pettik
2019-12-25 15:40 ` Vladislav Shpilevoy
2019-12-25 23:18 ` Nikita Pettik
2019-12-11 13:44 ` [Tarantool-patches] [PATCH v2 6/6] sql: extend result set with alias Nikita Pettik
2019-12-18 0:29 ` Vladislav Shpilevoy
2019-12-24 0:26 ` Nikita Pettik
2019-12-24 15:34 ` Vladislav Shpilevoy
2019-12-26 11:24 ` Nikita Pettik
2019-12-27 11:53 ` Vladislav Shpilevoy
2019-12-27 23:44 ` Nikita Pettik
2019-12-28 9:29 ` Vladislav Shpilevoy
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=20191224002612.GA16901@tarantool.org \
--to=korablev@tarantool.org \
--cc=tarantool-patches@dev.tarantool.org \
--cc=v.shpilevoy@tarantool.org \
--subject='Re: [Tarantool-patches] [PATCH v2 4/6] sql: extend result set with nullability' \
/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