From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 94B922C22A for ; Thu, 4 Oct 2018 10:36:37 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id s7ngvTLptu4h for ; Thu, 4 Oct 2018 10:36:37 -0400 (EDT) Received: from smtpng3.m.smailru.net (smtpng3.m.smailru.net [94.100.177.149]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 03A4522B9F for ; Thu, 4 Oct 2018 10:36:36 -0400 (EDT) From: AKhatskevich Subject: [tarantool-patches] [PATCH 0/2] fix yaml encode/decode Date: Thu, 4 Oct 2018 17:36:12 +0300 Message-Id: Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-subscribe: List-owner: List-post: List-archive: To: kyukhin@tarantool.org, tarantool-patches@freelists.org Branch: https://github.com/tarantool/tarantool/tree/kh/gh-3662-yaml-1.10 Issue: https://github.com/tarantool/tarantool/issues/3583 Issue: https://github.com/tarantool/tarantool/issues/3662 AKhatskevich (2): lua-yaml: fix read garbage bug lua-yaml: fix yaml encode/decode type inferring test/app-tap/console.test.lua | 25 +- test/app/fio.result | 2 +- test/app/socket.result | 26 +- test/box/access.result | 8 +- test/box/misc.result | 2 +- test/box/role.result | 8 +- test/box/sequence.result | 2 +- test/vinyl/errinj.result | 10 +- test/vinyl/hermitage.result | 122 ++--- test/vinyl/mvcc.result | 1062 +++++++++++++++++++-------------------- test/vinyl/tx_conflict.result | 4 +- test/vinyl/tx_conflict.test.lua | 4 +- test/vinyl/tx_gap_lock.result | 186 +++---- test/vinyl/tx_serial.result | 4 +- test/vinyl/tx_serial.test.lua | 4 +- test/vinyl/txn_proxy.lua | 6 + third_party/lua-yaml/lyaml.cc | 50 +- third_party/lua-yaml/str_type.h | 33 ++ 18 files changed, 806 insertions(+), 752 deletions(-) create mode 100644 third_party/lua-yaml/str_type.h -- 2.14.1