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 94BA21FCF9 for ; Thu, 4 Oct 2018 11:16:52 -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 XQcd0UO_Vd4i for ; Thu, 4 Oct 2018 11:16:52 -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 539161FCE0 for ; Thu, 4 Oct 2018 11:16:52 -0400 (EDT) Subject: [tarantool-patches] Re: [PATCH 3/3] sql: delete ignore_check_constraints pragma References: <27d2bf9aa3b316345d3016590e3047c4b204b3ed.1538476785.git.avkhatskevich@tarantool.org> From: Alex Khatskevich Message-ID: <69d233c9-2911-f77b-e2d1-003e0239b625@tarantool.org> Date: Thu, 4 Oct 2018 18:16:50 +0300 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset="utf-8"; format="flowed" Content-Transfer-Encoding: 8bit Content-Language: en-US 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: "n.pettik" , tarantool-patches@freelists.org On 02.10.2018 16:36, n.pettik wrote: >> diff --git a/src/box/sql/sqliteInt.h b/src/box/sql/sqliteInt.h >> index b2d527834..8883d37ad 100644 >> --- a/src/box/sql/sqliteInt.h >> +++ b/src/box/sql/sqliteInt.h >> @@ -1558,7 +1558,7 @@ struct sqlite3 { >> #define SQLITE_WhereTrace 0x00008000 /* Debug info about optimizer's work */ >> #define SQLITE_VdbeListing 0x00000400 /* Debug listings of VDBE programs */ >> #define SQLITE_VdbeAddopTrace 0x00001000 /* Trace sqlite3VdbeAddOp() calls */ >> -#define SQLITE_IgnoreChecks 0x00002000 /* Do not enforce check constraints */ >> +/* 0x00002000 Free bit */ > The same: don’t do it. Lets simply delete this flag. > > The rest is OK. Fixed