From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp52.i.mail.ru (smtp52.i.mail.ru [94.100.177.112]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 9E78044643A for ; Sat, 12 Sep 2020 00:51:17 +0300 (MSK) From: Roman Khabibov Date: Sat, 12 Sep 2020 00:51:12 +0300 Message-Id: <20200911215115.6622-4-roman.habibov@tarantool.org> In-Reply-To: <20200911215115.6622-1-roman.habibov@tarantool.org> References: <20200911215115.6622-1-roman.habibov@tarantool.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v4 3/6] schema: add box_space_field_MAX List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tarantool-patches@dev.tarantool.org Cc: v.shpilevoy@tarantool.org Just add box_space_field_MAX to the _space fields enum. Needed for #3075 --- src/box/schema_def.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/box/schema_def.h b/src/box/schema_def.h index f86cd42f1..238d9f1e4 100644 --- a/src/box/schema_def.h +++ b/src/box/schema_def.h @@ -131,6 +131,7 @@ enum { BOX_SPACE_FIELD_FIELD_COUNT = 4, BOX_SPACE_FIELD_OPTS = 5, BOX_SPACE_FIELD_FORMAT = 6, + box_space_field_MAX = 7, }; /** _index fields. */ -- 2.24.3 (Apple Git-128)