You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by se...@apache.org on 2016/08/15 13:47:37 UTC

[1/2] ignite git commit: ignite-3685 - fixed

Repository: ignite
Updated Branches:
  refs/heads/master b911ff8eb -> ecc734c20


ignite-3685 - fixed


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/38ae4e55
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/38ae4e55
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/38ae4e55

Branch: refs/heads/master
Commit: 38ae4e5552e8dfb3e4503f66226d1b60eeec6cd1
Parents: bfa375b
Author: Sergi Vladykin <se...@gmail.com>
Authored: Mon Aug 15 16:46:54 2016 +0300
Committer: Sergi Vladykin <se...@gmail.com>
Committed: Mon Aug 15 16:46:54 2016 +0300

----------------------------------------------------------------------
 .../internal/processors/query/h2/opt/GridH2Row.java |  2 +-
 .../IgniteCacheAbstractFieldsQuerySelfTest.java     |  2 +-
 .../local/IgniteCacheLocalFieldsQuerySelfTest.java  | 16 ++++++++++++++++
 3 files changed, 18 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/38ae4e55/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2Row.java
----------------------------------------------------------------------
diff --git a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2Row.java b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2Row.java
index 9486a2e..8e7b161 100644
--- a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2Row.java
+++ b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/opt/GridH2Row.java
@@ -98,7 +98,7 @@ public abstract class GridH2Row extends Row implements GridSearchRowPointer {
 
     /** {@inheritDoc} */
     @Override public void setKey(long key) {
-        throw new UnsupportedOperationException();
+        // No-op, may be set in H2 INFORMATION_SCHEMA.
     }
 
     /** {@inheritDoc} */

http://git-wip-us.apache.org/repos/asf/ignite/blob/38ae4e55/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheAbstractFieldsQuerySelfTest.java
----------------------------------------------------------------------
diff --git a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheAbstractFieldsQuerySelfTest.java b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheAbstractFieldsQuerySelfTest.java
index 926d294..d5f02eb 100644
--- a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheAbstractFieldsQuerySelfTest.java
+++ b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheAbstractFieldsQuerySelfTest.java
@@ -71,7 +71,7 @@ public abstract class IgniteCacheAbstractFieldsQuerySelfTest extends GridCommonA
     private static final TcpDiscoveryIpFinder IP_FINDER = new TcpDiscoveryVmIpFinder(true);
 
     /** Cache name. */
-    private static final String CACHE = "cache";
+    protected static final String CACHE = "cache";
 
     /** Empty cache name. */
     private static final String EMPTY_CACHE = "emptyCache";

http://git-wip-us.apache.org/repos/asf/ignite/blob/38ae4e55/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/local/IgniteCacheLocalFieldsQuerySelfTest.java
----------------------------------------------------------------------
diff --git a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/local/IgniteCacheLocalFieldsQuerySelfTest.java b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/local/IgniteCacheLocalFieldsQuerySelfTest.java
index be1f196..462118f 100644
--- a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/local/IgniteCacheLocalFieldsQuerySelfTest.java
+++ b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/local/IgniteCacheLocalFieldsQuerySelfTest.java
@@ -18,6 +18,8 @@
 package org.apache.ignite.internal.processors.cache.local;
 
 import org.apache.ignite.cache.CacheMode;
+import org.apache.ignite.cache.query.SqlFieldsQuery;
+import org.apache.ignite.internal.IgniteEx;
 import org.apache.ignite.internal.processors.cache.IgniteCacheAbstractFieldsQuerySelfTest;
 
 import static org.apache.ignite.cache.CacheMode.LOCAL;
@@ -26,6 +28,10 @@ import static org.apache.ignite.cache.CacheMode.LOCAL;
  * Tests for fields queries.
  */
 public class IgniteCacheLocalFieldsQuerySelfTest extends IgniteCacheAbstractFieldsQuerySelfTest {
+//    static {
+//        System.setProperty(IgniteSystemProperties.IGNITE_H2_DEBUG_CONSOLE, "1");
+//    }
+
     /** {@inheritDoc} */
     @Override protected CacheMode cacheMode() {
         return LOCAL;
@@ -35,4 +41,14 @@ public class IgniteCacheLocalFieldsQuerySelfTest extends IgniteCacheAbstractFiel
     @Override protected int gridCount() {
         return 1;
     }
+
+    /**
+     * @throws Exception If failed.
+     */
+    public void testInformationSchema() throws Exception {
+        IgniteEx ignite = grid(0);
+
+        ignite.cache(CACHE).query(
+            new SqlFieldsQuery("SELECT VALUE FROM INFORMATION_SCHEMA.SETTINGS").setLocal(true)).getAll();
+    }
 }
\ No newline at end of file


[2/2] ignite git commit: Merge remote-tracking branch 'origin/master'

Posted by se...@apache.org.
Merge remote-tracking branch 'origin/master'


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/ecc734c2
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/ecc734c2
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/ecc734c2

Branch: refs/heads/master
Commit: ecc734c2096de00fa571ff04d0db1109476e6720
Parents: 38ae4e5 b911ff8
Author: Sergi Vladykin <se...@gmail.com>
Authored: Mon Aug 15 16:47:32 2016 +0300
Committer: Sergi Vladykin <se...@gmail.com>
Committed: Mon Aug 15 16:47:32 2016 +0300

----------------------------------------------------------------------
 .../logger/platform/PlatformLogger.java         | 223 ++++++++++
 .../platform/PlatformAbstractBootstrap.java     |  18 +-
 .../platform/PlatformConfigurationEx.java       |   6 +
 .../platform/PlatformNoopProcessor.java         |  10 +
 .../processors/platform/PlatformProcessor.java  |  16 +
 .../platform/PlatformProcessorImpl.java         |  56 +++
 .../callback/PlatformCallbackGateway.java       |  45 ++
 .../callback/PlatformCallbackUtils.java         |  20 +
 .../cpp/PlatformCppConfigurationEx.java         |   6 +
 .../dotnet/PlatformDotNetBootstrap.java         |   9 +
 .../PlatformDotNetConfigurationClosure.java     |  11 +-
 .../dotnet/PlatformDotNetConfigurationEx.java   |  12 +-
 .../cpp/jni/include/ignite/jni/exports.h        |   2 +
 .../platforms/cpp/jni/include/ignite/jni/java.h |  13 +
 modules/platforms/cpp/jni/project/vs/module.def |   3 +-
 modules/platforms/cpp/jni/src/exports.cpp       |  12 +-
 modules/platforms/cpp/jni/src/java.cpp          |  72 +++-
 .../Apache.Ignite.Core.Tests.csproj             |   8 +
 .../Binary/BinaryStringTest.cs                  |  26 +-
 .../Config/Log/custom-log.xml                   |  50 +++
 .../Config/Log/dotnet-log4j.xml                 | 143 ++++++
 .../IgniteConfigurationSerializerTest.cs        |  24 ++
 .../Log/CustomLoggerTest.cs                     | 430 +++++++++++++++++++
 .../Log/DefaultLoggerTest.cs                    | 114 +++++
 .../Apache.Ignite.Core.Tests/TestUtils.cs       |  27 +-
 .../Apache.Ignite.Core.csproj                   |   6 +-
 .../Cache/Configuration/CacheConfiguration.cs   |  19 +-
 .../Cache/Configuration/QueryEntity.cs          |  25 +-
 .../Cache/Configuration/QueryField.cs           |  19 +-
 .../dotnet/Apache.Ignite.Core/IIgnite.cs        |   8 +
 .../Apache.Ignite.Core/IgniteConfiguration.cs   |  25 ++
 .../IgniteConfigurationSection.xsd              |  12 +
 .../dotnet/Apache.Ignite.Core/Ignition.cs       |  39 +-
 .../Apache.Ignite.Core/Impl/Binary/JavaTypes.cs |  29 +-
 .../Apache.Ignite.Core/Impl/Common/Logger.cs    |  37 --
 .../dotnet/Apache.Ignite.Core/Impl/Ignite.cs    |   9 +
 .../Apache.Ignite.Core/Impl/IgniteManager.cs    |   6 +-
 .../Apache.Ignite.Core/Impl/IgniteProxy.cs      |   7 +
 .../Apache.Ignite.Core/Impl/IgniteUtils.cs      |  26 +-
 .../Apache.Ignite.Core/Impl/Log/JavaLogger.cs   | 110 +++++
 .../Impl/Unmanaged/IgniteJniNativeMethods.cs    |   7 +
 .../Impl/Unmanaged/UnmanagedCallbackHandlers.cs |   3 +
 .../Impl/Unmanaged/UnmanagedCallbacks.cs        |  76 +++-
 .../Impl/Unmanaged/UnmanagedUtils.cs            |  27 +-
 .../Apache.Ignite.Core/Log/CategoryLogger.cs    |  82 ++++
 .../dotnet/Apache.Ignite.Core/Log/ILogger.cs    |  51 +++
 .../dotnet/Apache.Ignite.Core/Log/LogLevel.cs   |  53 +++
 .../Apache.Ignite.Core/Log/LoggerExtensions.cs  | 320 ++++++++++++++
 48 files changed, 2241 insertions(+), 111 deletions(-)
----------------------------------------------------------------------