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 BF545206D3 for ; Tue, 26 Jun 2018 13:09:36 -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 L2aacQkY7lfP for ; Tue, 26 Jun 2018 13:09:36 -0400 (EDT) Received: from smtpng1.m.smailru.net (smtpng1.m.smailru.net [94.100.181.251]) (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 22C52206AF for ; Tue, 26 Jun 2018 13:09:36 -0400 (EDT) Subject: [tarantool-patches] Re: [PATCH v1 2/2] sql: enable multi-engine tests for SQL References: <9418cbf4-7ffa-3cfd-a544-bd49b5e52a2c@tarantool.org> <006ee2bb-5abc-d612-3a4f-c709d7f3c27f@tarantool.org> <095ad7eb-43a3-8871-6123-7e0bb1e70601@tarantool.org> From: Kirill Shcherbatov Message-ID: Date: Tue, 26 Jun 2018 20:09:34 +0300 MIME-Version: 1.0 In-Reply-To: <095ad7eb-43a3-8871-6123-7e0bb1e70601@tarantool.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit 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: tarantool-patches@freelists.org Cc: Vladislav Shpilevoy > 1. Not in the test. See where memtx_max_tuple_size is changed. --- a/test/sql/app.lua +++ b/test/sql/app.lua @@ -3,7 +3,8 @@ box.cfg{ listen = os.getenv("LISTEN"), pid_file = "tarantool.pid", - memtx_max_tuple_size = 5 * 1024 * 1024 + memtx_max_tuple_size = 5 * 1024 * 1024, + vinyl_max_tuple_size = 5 * 1024 * 1024, } > >> +_ = space:replace{1, 1, string.rep('a', 4 * 1024 * 1024) } > > 2. This line it unnecessary diff. Ok, fixed.