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 E357924C01 for ; Mon, 14 May 2018 10:50:59 -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 mVMz1jEXgcgy for ; Mon, 14 May 2018 10:50:59 -0400 (EDT) Received: from smtp61.i.mail.ru (smtp61.i.mail.ru [217.69.128.41]) (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 A1AAE242B7 for ; Mon, 14 May 2018 10:50:59 -0400 (EDT) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 10.3 \(3273\)) Subject: [tarantool-patches] Re: [PATCH v1 1/1] sql: added tests for TEMP and TEMPORARY clauses From: "n.pettik" In-Reply-To: <2421251526051907@web18j.yandex.ru> Date: Mon, 14 May 2018 17:50:55 +0300 Content-Transfer-Encoding: quoted-printable Message-Id: <04E4818B-7629-43D0-A647-E8918CD9D82A@tarantool.org> References: <2050311525824390@web59j.yandex.ru> <225ED31B-14F7-4BF1-9383-2100722DFEF2@tarantool.org> <6369401525886435@web18j.yandex.ru> <2421251526051907@web18j.yandex.ru> 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: roman.habibov1@yandex.ru > + CREATE TEMP TABLE t1(col1 int, col2 int); > + CREATE TEMPORARY TABLE t1(col1 int, col2 int); You can=E2=80=99t create table this way: you must specify primary key.