From: Timur Safin <tsafin@tarantool.org> To: v.shpilevoy@tarantool.org, alexander.turenko@tarantool.org Cc: tarantool-patches@dev.tarantool.org Subject: [Tarantool-patches] [PATCH 2.X v3 2/3] module api: export box_key_def_dup Date: Mon, 12 Oct 2020 03:44:10 +0300 [thread overview] Message-ID: <faf56d41670aef2eea658c5abe21672902983be0.1602463103.git.tsafin@tarantool.org> (raw) In-Reply-To: <cover.1602463103.git.tsafin@tarantool.org> Exporting `box_key_def_dup` as accessor to the internal `key_def_dup` Part of #5384 --- src/box/key_def.c | 6 ++++++ src/box/key_def.h | 10 ++++++++++ src/exports.h | 1 + 3 files changed, 17 insertions(+) diff --git a/src/box/key_def.c b/src/box/key_def.c index af4e8f4cd..322a62046 100644 --- a/src/box/key_def.c +++ b/src/box/key_def.c @@ -507,6 +507,12 @@ box_key_def_new_v2(box_key_part_def_t *parts, uint32_t part_count) return key_def; } +box_key_def_t * +box_key_def_dup(const box_key_def_t *key_def) +{ + return key_def_dup(key_def); +} + void box_key_def_delete(box_key_def_t *key_def) { diff --git a/src/box/key_def.h b/src/box/key_def.h index 9222c9240..dccad78db 100644 --- a/src/box/key_def.h +++ b/src/box/key_def.h @@ -437,6 +437,16 @@ box_key_part_def_create(box_key_part_def_t *part); API_EXPORT box_key_def_t * box_key_def_new_v2(box_key_part_def_t *parts, uint32_t part_count); +/** + * Duplicate key_def. + * @param key_def Original key_def. + * + * @retval not NULL Duplicate of src. + * @retval NULL Memory error. + */ +API_EXPORT box_key_def_t * +box_key_def_dup(const box_key_def_t *key_def); + /** * Delete key definition * diff --git a/src/exports.h b/src/exports.h index 051818ef7..ff0660e24 100644 --- a/src/exports.h +++ b/src/exports.h @@ -31,6 +31,7 @@ EXPORT(box_iterator_free) EXPORT(box_iterator_next) EXPORT(box_key_def_delete) EXPORT(box_key_def_dump_parts) +EXPORT(box_key_def_dup) EXPORT(box_key_def_extract_key) EXPORT(box_key_def_merge) EXPORT(box_key_def_new) -- 2.20.1
next prev parent reply other threads:[~2020-10-12 0:44 UTC|newest] Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-10-12 0:44 [Tarantool-patches] [PATCH 2.X v3 0/3] module api: extend for external merger Lua module Timur Safin 2020-10-12 0:44 ` [Tarantool-patches] [PATCH 2.X v3 1/3] module api: export box_tuple_validate Timur Safin 2020-10-13 0:14 ` Alexander Turenko 2020-10-13 0:35 ` Timur Safin 2020-10-12 0:44 ` Timur Safin [this message] 2020-10-13 0:46 ` [Tarantool-patches] [PATCH 2.X v3 2/3] module api: export box_key_def_dup Alexander Turenko 2020-10-12 0:44 ` [Tarantool-patches] [PATCH 2.X v3 3/3] module api: luaL_checkibuf Timur Safin 2020-10-13 11:47 ` Alexander Turenko 2020-10-13 19:26 ` Igor Munkin 2020-10-13 16:30 ` [Tarantool-patches] [PATCH 2.X v3] module api: box_ibuf_* wrappers Timur Safin 2020-10-13 18:21 ` Alexander Turenko 2020-10-13 19:02 ` Timur Safin 2020-10-13 19:58 ` Alexander Turenko
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=faf56d41670aef2eea658c5abe21672902983be0.1602463103.git.tsafin@tarantool.org \ --to=tsafin@tarantool.org \ --cc=alexander.turenko@tarantool.org \ --cc=tarantool-patches@dev.tarantool.org \ --cc=v.shpilevoy@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH 2.X v3 2/3] module api: export box_key_def_dup' \ /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