[hibernate-commits] Hibernate SVN: r11471 - trunk/HibernateExt/shards/doc/reference/en/modules.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Sun May 6 17:50:41 EDT 2007


Author: max.ross
Date: 2007-05-06 17:50:41 -0400 (Sun, 06 May 2007)
New Revision: 11471

Modified:
   trunk/HibernateExt/shards/doc/reference/en/modules/configuration.xml
Log:
Fix doc bug http://opensource.atlassian.com/projects/hibernate/browse/HSHARDS-10
Mapping for sharded version of WeatherReport now matches non-sharded version of WeatherReport.

Modified: trunk/HibernateExt/shards/doc/reference/en/modules/configuration.xml
===================================================================
--- trunk/HibernateExt/shards/doc/reference/en/modules/configuration.xml	2007-05-06 21:47:18 UTC (rev 11470)
+++ trunk/HibernateExt/shards/doc/reference/en/modules/configuration.xml	2007-05-06 21:50:41 UTC (rev 11471)
@@ -251,8 +251,9 @@
         <id name="reportId" column="REPORT_ID" type="long">
             <generator class="org.hibernate.shards.id.ShardedTableHiLoGenerator"/>
         </id>
-        <property name="country" column="COUNTRY"/>
-        <property name="city" column="CITY"/>
+        <property name="continent" column="CONTINENT"/>
+        <property name="latitude" column="LATITUDE"/>
+        <property name="longitude" column="LONGITUDE"/>
         <property name="temperature" column="TEMPERATURE"/>
         <property name="reportTime" type="timestamp" column="REPORT_TIME"/>
     </class>




More information about the hibernate-commits mailing list