Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8ECBE18FB0 for ; Thu, 4 Feb 2016 10:09:06 +0000 (UTC) Received: (qmail 32585 invoked by uid 500); 4 Feb 2016 10:09:06 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 32484 invoked by uid 500); 4 Feb 2016 10:09:06 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 31320 invoked by uid 99); 4 Feb 2016 10:09:05 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Feb 2016 10:09:05 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 74B85DFF96; Thu, 4 Feb 2016 10:09:05 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: agoncharuk@apache.org To: commits@ignite.apache.org Date: Thu, 04 Feb 2016 10:09:45 -0000 Message-Id: <58f7d395541d45259e5029de30e5d14e@git.apache.org> In-Reply-To: <2bf437f9a6f043d2bf6c4dddff3fa880@git.apache.org> References: <2bf437f9a6f043d2bf6c4dddff3fa880@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [42/50] [abbrv] ignite git commit: sql-store-idx - fixes sql-store-idx - fixes Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/8ad73cb2 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/8ad73cb2 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/8ad73cb2 Branch: refs/heads/sql-store Commit: 8ad73cb2cb3593e8357a84f6cb2a9134370ff555 Parents: fd13f7d Author: S.Vladykin Authored: Sun Jan 31 23:30:44 2016 +0300 Committer: Alexey Goncharuk Committed: Wed Feb 3 17:13:42 2016 +0300 ---------------------------------------------------------------------- .../ignite/internal/processors/query/h2/opt/GridH2Table.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/8ad73cb2/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2Table.java ---------------------------------------------------------------------- diff --git a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2Table.java b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2Table.java index c09081c..4a00296 100644 --- a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2Table.java +++ b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2Table.java @@ -25,7 +25,6 @@ import java.util.Collections; import java.util.Set; import java.util.concurrent.ConcurrentNavigableMap; import java.util.concurrent.TimeUnit; -import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReadWriteLock; import java.util.concurrent.locks.ReentrantReadWriteLock; import org.apache.ignite.IgniteCheckedException; @@ -340,6 +339,9 @@ public class GridH2Table extends TableBase { GridH2Row row = desc.createRow(key, val, expirationTime); + row.key = key; + row.val = val; + return doUpdate(row, rmv); }