From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp44.i.mail.ru (smtp44.i.mail.ru [94.100.177.104]) (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 490C744643A for ; Fri, 9 Oct 2020 16:45:32 +0300 (MSK) From: Roman Khabibov Date: Fri, 9 Oct 2020 16:45:27 +0300 Message-Id: <20201009134529.13212-4-roman.habibov@tarantool.org> In-Reply-To: <20201009134529.13212-1-roman.habibov@tarantool.org> References: <20201009134529.13212-1-roman.habibov@tarantool.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v4 3/5] 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 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)