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 C517F18692 for ; Thu, 18 Feb 2016 05:06:59 +0000 (UTC) Received: (qmail 59498 invoked by uid 500); 18 Feb 2016 05:06:59 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 59462 invoked by uid 500); 18 Feb 2016 05:06:59 -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 59453 invoked by uid 99); 18 Feb 2016 05:06:59 -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, 18 Feb 2016 05:06:59 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8CFBEE020D; Thu, 18 Feb 2016 05:06:59 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.apache.org Message-Id: <46e6a0efa4af4aaea82725d9f72968e4@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: ignite git commit: ignite-2669 Register BinaryEnumObjectImpl as predefined type. Date: Thu, 18 Feb 2016 05:06:59 +0000 (UTC) Repository: ignite Updated Branches: refs/heads/master 7d5f77e2f -> 21f22d3db ignite-2669 Register BinaryEnumObjectImpl as predefined type. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/21f22d3d Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/21f22d3d Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/21f22d3d Branch: refs/heads/master Commit: 21f22d3db84a731de54db9530a04244321766c57 Parents: 7d5f77e Author: sboikov Authored: Thu Feb 18 08:06:32 2016 +0300 Committer: sboikov Committed: Thu Feb 18 08:06:32 2016 +0300 ---------------------------------------------------------------------- .../main/java/org/apache/ignite/internal/binary/BinaryContext.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/21f22d3d/modules/core/src/main/java/org/apache/ignite/internal/binary/BinaryContext.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/binary/BinaryContext.java b/modules/core/src/main/java/org/apache/ignite/internal/binary/BinaryContext.java index cf19bdf..4df9ba2 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/binary/BinaryContext.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/binary/BinaryContext.java @@ -218,6 +218,7 @@ public class BinaryContext { registerPredefinedType(BinaryObjectOffheapImpl.class, 0); registerPredefinedType(BinaryMetadataKey.class, 0); registerPredefinedType(BinaryMetadata.class, 0); + registerPredefinedType(BinaryEnumObjectImpl.class, 0); // IDs range [200..1000] is used by Ignite internal APIs. }