From: Mergen Imeev via Tarantool-patches <tarantool-patches@dev.tarantool.org>
To: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Cc: tarantool-patches@dev.tarantool.org
Subject: Re: [Tarantool-patches] [PATCH v2 4/6] alter: parse data dictionary version
Date: Fri, 6 Aug 2021 22:47:25 +0300 [thread overview]
Message-ID: <20210806194725.GD11107@tarantool.org> (raw)
In-Reply-To: <2e871a92-4bd0-faae-2bc3-2dc9948757ce@tarantool.org>
Thank you for the review! My answer, diff and newpatch below.
On Fri, Aug 06, 2021 at 12:17:30AM +0200, Vladislav Shpilevoy wrote:
> Thanks for the patch!
>
> > diff --git a/src/box/schema.cc b/src/box/schema.cc
> > index 963278b19..35026619a 100644
> > --- a/src/box/schema.cc
> > +++ b/src/box/schema.cc
> > @@ -70,6 +71,9 @@ uint32_t schema_version = 0;
> > */
> > uint32_t space_cache_version = 0;
> >
> > +/** Persistent version of the schema, stored in _schema["version"]. */
> > +uint32_t dd_version_id = tarantool_version_id();
>
> I propose to assign it to 0. Because at start there is no
> schema at all until box.cfg{} is called first time. (Also then
> version.h include could be dropped above.)
>
Thanks! Fixed.
> > +
> > struct rlist on_schema_init = RLIST_HEAD_INITIALIZER(on_schema_init);
> > struct rlist on_alter_space = RLIST_HEAD_INITIALIZER(on_alter_space);
> > struct rlist on_alter_sequence = RLIST_HEAD_INITIALIZER(on_alter_sequence);
Diff:
diff --git a/src/box/schema.cc b/src/box/schema.cc
index 35026619a..5659e15b7 100644
--- a/src/box/schema.cc
+++ b/src/box/schema.cc
@@ -38,7 +38,6 @@
#include "user.h"
#include "vclock/vclock.h"
#include "fiber.h"
-#include "version.h"
/**
* @module Data Dictionary
@@ -72,7 +71,7 @@ uint32_t schema_version = 0;
uint32_t space_cache_version = 0;
/** Persistent version of the schema, stored in _schema["version"]. */
-uint32_t dd_version_id = tarantool_version_id();
+uint32_t dd_version_id = 0;
struct rlist on_schema_init = RLIST_HEAD_INITIALIZER(on_schema_init);
struct rlist on_alter_space = RLIST_HEAD_INITIALIZER(on_alter_space);
Patch:
commit ae9274f3f0ee8de36b8060c1236aa0d4279a5172
Author: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Date: Tue Sep 12 17:46:25 2017 +0300
alter: parse data dictionary version
Version is needed to disallow creation of SQL built-in functions using
_func starting with 2.9.0.
Needed for #6106
diff --git a/src/box/alter.cc b/src/box/alter.cc
index 935790df4..217b882ba 100644
--- a/src/box/alter.cc
+++ b/src/box/alter.cc
@@ -4167,6 +4167,24 @@ on_replace_dd_schema(struct trigger * /* trigger */, void *event)
return -1;
REPLICASET_UUID = uu;
say_info("cluster uuid %s", tt_uuid_str(&uu));
+ } else if (strcmp(key, "version") == 0) {
+ if (new_tuple != NULL) {
+ uint32_t major, minor, patch;
+ if (tuple_field_u32(new_tuple, 1, &major) != 0 ||
+ tuple_field_u32(new_tuple, 2, &minor) != 0)
+ tnt_raise(ClientError, ER_WRONG_DD_VERSION);
+ /* Version can be major.minor with no patch. */
+ if (tuple_field_u32(new_tuple, 3, &patch) != 0)
+ patch = 0;
+ dd_version_id = version_id(major, minor, patch);
+ } else {
+ assert(old_tuple != NULL);
+ /*
+ * _schema:delete({'version'}) for
+ * example, for box.internal.bootstrap().
+ */
+ dd_version_id = tarantool_version_id();
+ }
}
return 0;
}
diff --git a/src/box/schema.cc b/src/box/schema.cc
index 963278b19..5659e15b7 100644
--- a/src/box/schema.cc
+++ b/src/box/schema.cc
@@ -70,6 +70,9 @@ uint32_t schema_version = 0;
*/
uint32_t space_cache_version = 0;
+/** Persistent version of the schema, stored in _schema["version"]. */
+uint32_t dd_version_id = 0;
+
struct rlist on_schema_init = RLIST_HEAD_INITIALIZER(on_schema_init);
struct rlist on_alter_space = RLIST_HEAD_INITIALIZER(on_alter_space);
struct rlist on_alter_sequence = RLIST_HEAD_INITIALIZER(on_alter_sequence);
diff --git a/src/box/schema.h b/src/box/schema.h
index 25ac6f110..d3bbdd590 100644
--- a/src/box/schema.h
+++ b/src/box/schema.h
@@ -44,6 +44,7 @@ struct func;
extern uint32_t schema_version;
extern uint32_t space_cache_version;
+extern uint32_t dd_version_id;
/** Triggers invoked after schema initialization. */
extern struct rlist on_schema_init;
next prev parent reply other threads:[~2021-08-06 19:47 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-04 12:58 [Tarantool-patches] [PATCH v2 0/6] Remove SQL built-in functions from _func Mergen Imeev via Tarantool-patches
2021-08-04 12:58 ` [Tarantool-patches] [PATCH v2 1/6] sql: introduce sql_func_flags() Mergen Imeev via Tarantool-patches
2021-08-05 22:14 ` Vladislav Shpilevoy via Tarantool-patches
2021-08-06 19:41 ` Mergen Imeev via Tarantool-patches
2021-08-04 12:58 ` [Tarantool-patches] [PATCH v2 2/6] sql: introduce sql_func_find() Mergen Imeev via Tarantool-patches
2021-08-05 22:15 ` Vladislav Shpilevoy via Tarantool-patches
2021-08-06 19:42 ` Mergen Imeev via Tarantool-patches
2021-08-04 12:58 ` [Tarantool-patches] [PATCH v2 3/6] sql: remove SQL built-in functions from _func Mergen Imeev via Tarantool-patches
2021-08-05 22:17 ` Vladislav Shpilevoy via Tarantool-patches
2021-08-06 19:45 ` Mergen Imeev via Tarantool-patches
2021-08-04 12:58 ` [Tarantool-patches] [PATCH v2 4/6] alter: parse data dictionary version Mergen Imeev via Tarantool-patches
2021-08-05 22:17 ` Vladislav Shpilevoy via Tarantool-patches
2021-08-06 19:47 ` Mergen Imeev via Tarantool-patches [this message]
2021-08-04 12:58 ` [Tarantool-patches] [PATCH v2 5/6] alter: disallow creation of SQL built-in function Mergen Imeev via Tarantool-patches
2021-08-05 22:18 ` Vladislav Shpilevoy via Tarantool-patches
2021-08-06 19:54 ` Mergen Imeev via Tarantool-patches
2021-08-04 12:58 ` [Tarantool-patches] [PATCH v2 6/6] sql: remove unnecessary function initialization Mergen Imeev via Tarantool-patches
2021-08-06 19:59 ` Mergen Imeev via Tarantool-patches
2021-08-08 12:08 ` [Tarantool-patches] [PATCH v2 0/6] Remove SQL built-in functions from _func Vladislav Shpilevoy via Tarantool-patches
2021-08-09 7:18 Mergen Imeev via Tarantool-patches
2021-08-09 7:19 ` [Tarantool-patches] [PATCH v2 4/6] alter: parse data dictionary version Mergen Imeev 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=20210806194725.GD11107@tarantool.org \
--to=tarantool-patches@dev.tarantool.org \
--cc=imeevma@tarantool.org \
--cc=v.shpilevoy@tarantool.org \
--subject='Re: [Tarantool-patches] [PATCH v2 4/6] alter: parse data dictionary version' \
/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