From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp63.i.mail.ru (smtp63.i.mail.ru [217.69.128.43]) (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 7886142EF5C for ; Mon, 15 Jun 2020 18:56:33 +0300 (MSK) From: Sergey Kaplun Date: Mon, 15 Jun 2020 18:56:16 +0300 Message-Id: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 0/2] Msgpack wrong extension type in error message List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tarantool-patches@dev.tarantool.org Cc: Alexander Turenko This patch updates msgpucks library to be able to support encoding of extension type for tarantool version 1.10-2.2 and fixes incorrect extension type inside error message at msgpack decoding inside default handler. Branch: https://github.com/tarantool/tarantool/tree/skaplun/gh-5017-msgpack-wrong-ext-type Issue: https://github.com/tarantool/tarantool/issues/5017 Sergey Kaplun (2): lib: update msgpuck library msgpack: fix wrong mp_ext type in error message src/lib/msgpuck | 2 +- src/lua/msgpack.c | 5 +- test/unit/CMakeLists.txt | 5 + test/unit/mplua.c | 47 ++++ test/unit/mplua.result | 5 + test/unit/msgpack.result | 480 +++++++++++++++++++++++++++++++++++++-- 6 files changed, 528 insertions(+), 16 deletions(-) create mode 100644 test/unit/mplua.c create mode 100644 test/unit/mplua.result -- 2.24.1