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 917DC2C367 for ; Wed, 10 Oct 2018 09:19:14 -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 AOwwB4HKBuwk for ; Wed, 10 Oct 2018 09:19:14 -0400 (EDT) Received: from mail-lf1-f67.google.com (mail-lf1-f67.google.com [209.85.167.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 39E0A2C364 for ; Wed, 10 Oct 2018 09:19:14 -0400 (EDT) Received: by mail-lf1-f67.google.com with SMTP id y10-v6so3968116lfj.1 for ; Wed, 10 Oct 2018 06:19:14 -0700 (PDT) Date: Wed, 10 Oct 2018 16:19:09 +0300 From: Sergei Kalashnikov Subject: [tarantool-patches] Re: [PATCH] jdbc: fix primary keys meta retrieval Message-ID: <20181010131907.GA18776@daedra.localdomain> References: <1537954408-3275-1-git-send-email-ztarvos@gmail.com> <20181001130427.zlugbqlg3madlo7r@tkn_work_nb> <20181009092158.GA17512@daedra.localdomain> <20181009154005.uj5cwb6hcmhsmbju@tkn_work_nb> <20181010081401.GA22345@daedra.localdomain> <20181010101938.7vtr3rw632hw2vyw@tkn_work_nb> <20181010110947.GA6883@daedra.localdomain> <20181010125020.4i6mizyxz6ftc2m7@tkn_work_nb> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20181010125020.4i6mizyxz6ftc2m7@tkn_work_nb> 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: Alexander Turenko Cc: tarantool-patches No problem. I pushed the amended commit to the branch. Thank you. On Wed, Oct 10, 2018 at 03:50:20PM +0300, Alexander Turenko wrote: > On Wed, Oct 10, 2018 at 02:09:48PM +0300, Sergei Kalashnikov wrote: > > Sure. Please find the amended patch at the very end of this mail. > > > > Found one more such case. Sorry, missed that before. > > diff --git a/src/test/java/org/tarantool/jdbc/JdbcExceptionHandlingTest.java b/src/test/java/org/tarantool/jdbc/JdbcExceptionHandlingTest.java > index 39d6326..8cc7acc 100644 > --- a/src/test/java/org/tarantool/jdbc/JdbcExceptionHandlingTest.java > +++ b/src/test/java/org/tarantool/jdbc/JdbcExceptionHandlingTest.java > @@ -25,10 +25,10 @@ public class JdbcExceptionHandlingTest { > /** > * Simulates meta parsing error: missing "name" field in a space format for the primary key. > * > - * @throws Exception on failure. > + * @throws SQLException on failure. > */ > @Test > - public void testDatabaseMetaDataGetPrimaryKeysFormatError() throws Exception { > + public void testDatabaseMetaDataGetPrimaryKeysFormatError() throws SQLException { > TarantoolConnection tntCon = mock(TarantoolConnection.class); > SQLConnection conn = new SQLConnection(tntCon, "", new Properties()); > > You can don't attach the whole patch in case of such small code tweaks > (at least for me), because we anyway kept in sync using the repository. > > WBR, Alexander Turenko.