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 5A35E214F6 for ; Thu, 19 Apr 2018 05:27:03 -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 hKH1dHkgJhiI for ; Thu, 19 Apr 2018 05:27:03 -0400 (EDT) Received: from smtp1.mail.ru (smtp1.mail.ru [94.100.179.111]) (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 189BC214F5 for ; Thu, 19 Apr 2018 05:27:02 -0400 (EDT) Subject: [tarantool-patches] Re: [PATCH 1/2] Convert some tests into a static-types form. References: From: Vladislav Shpilevoy Message-ID: <7afc7794-37a5-e801-812a-6a5ef5f1fdb4@tarantool.org> Date: Thu, 19 Apr 2018 12:26:59 +0300 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed 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, Georgy Kirichenko > diff --git a/test/sql-tap/table.test.lua b/test/sql-tap/table.test.lua > index 6e1056193..a4a40747b 100755 > --- a/test/sql-tap/table.test.lua > +++ b/test/sql-tap/table.test.lua > @@ -317,7 +317,7 @@ test:do_test( > "table-4.1", > function() > for i = 1, 100, 1 do > - local sql = "CREATE TABLE "..string.format("test%03d", i).." (id primary key, " > + local INT sql = "CREATE TABLE "..string.format("test%03d", i).." (id INT primary key, " Hello. 'local INT sql' - typo? Lua has no types.