You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ak...@apache.org on 2015/02/02 07:52:06 UTC

incubator-ignite git commit: # IGNITE-32: fixed typo.

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-32 c8b046012 -> 1a14dacc9


# IGNITE-32: fixed typo.


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

Branch: refs/heads/ignite-32
Commit: 1a14dacc95c11ec8311da3ce55452d6e23333d60
Parents: c8b0460
Author: AKuznetsov <ak...@gridgain.com>
Authored: Mon Feb 2 13:52:11 2015 +0700
Committer: AKuznetsov <ak...@gridgain.com>
Committed: Mon Feb 2 13:52:11 2015 +0700

----------------------------------------------------------------------
 .../apache/ignite/cache/query/CacheQueryTableMetadata.java   | 2 +-
 modules/core/src/test/config/store/jdbc/Ignite.xml           | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/1a14dacc/modules/core/src/main/java/org/apache/ignite/cache/query/CacheQueryTableMetadata.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/cache/query/CacheQueryTableMetadata.java b/modules/core/src/main/java/org/apache/ignite/cache/query/CacheQueryTableMetadata.java
index 63436cb..d2418d6 100644
--- a/modules/core/src/main/java/org/apache/ignite/cache/query/CacheQueryTableMetadata.java
+++ b/modules/core/src/main/java/org/apache/ignite/cache/query/CacheQueryTableMetadata.java
@@ -128,7 +128,7 @@ public class CacheQueryTableMetadata {
      *
      * @param valCols New value columns.
      */
-    public void setValueColumnbs(Collection<CacheQueryTableColumnMetadata> valCols) {
+    public void setValueColumns(Collection<CacheQueryTableColumnMetadata> valCols) {
         this.valCols = valCols;
     }
 }

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/1a14dacc/modules/core/src/test/config/store/jdbc/Ignite.xml
----------------------------------------------------------------------
diff --git a/modules/core/src/test/config/store/jdbc/Ignite.xml b/modules/core/src/test/config/store/jdbc/Ignite.xml
index 25dc5c8..4bdd40a 100644
--- a/modules/core/src/test/config/store/jdbc/Ignite.xml
+++ b/modules/core/src/test/config/store/jdbc/Ignite.xml
@@ -23,8 +23,8 @@
        xsi:schemaLocation="http://www.springframework.org/schema/beans 
                            http://www.springframework.org/schema/beans/spring-beans.xsd">
     <bean class="org.apache.ignite.cache.query.CacheQueryTypeMetadata">
-        <property name="type" value="org.apache.ignite.Organization"/>
-        <property name="keyType" value="org.apache.ignite.OrganizationKey"/>
+        <property name="type" value="org.apache.ignite.cache.store.jdbc.model.Organization"/>
+        <property name="keyType" value="org.apache.ignite.cache.store.jdbc.model.OrganizationKey"/>
         <property name="tableMetadata">
             <bean class="org.apache.ignite.cache.query.CacheQueryTableMetadata">
                 <property name="schema" value="PUBLIC"/>
@@ -119,8 +119,8 @@
         </property>
     </bean>
     <bean class="org.apache.ignite.cache.query.CacheQueryTypeMetadata">
-        <property name="type" value="org.apache.ignite.Person"/>
-        <property name="keyType" value="org.apache.ignite.PersonKey"/>
+        <property name="type" value="org.apache.ignite.cache.store.jdbc.model.Person"/>
+        <property name="keyType" value="org.apache.ignite.cache.store.jdbc.model.PersonKey"/>
         <property name="tableMetadata">
             <bean class="org.apache.ignite.cache.query.CacheQueryTableMetadata">
                 <property name="schema" value="PUBLIC"/>