Skip to content

Commit

Permalink
# IGNITE-32: fixed typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
akuznetsov-gridgain committed Feb 2, 2015
1 parent c8b0460 commit 1a14dac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Expand Up @@ -128,7 +128,7 @@ public Collection<CacheQueryTableColumnMetadata> getValueColumns() {
*
* @param valCols New value columns.
*/
public void setValueColumnbs(Collection<CacheQueryTableColumnMetadata> valCols) {
public void setValueColumns(Collection<CacheQueryTableColumnMetadata> valCols) {
this.valCols = valCols;
}
}
8 changes: 4 additions & 4 deletions modules/core/src/test/config/store/jdbc/Ignite.xml
Expand Up @@ -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"/>
Expand Down Expand Up @@ -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"/>
Expand Down

0 comments on commit 1a14dac

Please sign in to comment.