Andrus,
Any chance you can run the "ant regression" tests and insure that the
cgen regressions still pass? I'm not sure if your change impacts
those tests or not, as I don't remember which test map they use.
I know it's a pain to keep the generated files in sync, but it's the
best way to test cgen-related changes.
On 10/12/05, Andrus Adamchik <mens..sers.sourceforge.net> wrote:
> Update of /cvsroot/cayenne/cayenne/src/tests/resources/test-resources
> In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22299/src/tests/resources/test-resources
>
> Modified Files:
> cayenne.xml testmap.map.xml
> Log Message:
> adding nullable column to Painting
>
> Index: testmap.map.xml
> ===================================================================
> RCS file: /cvsroot/cayenne/cayenne/src/tests/resources/test-resources/testmap.map.xml,v
> retrieving revision 1.52
> retrieving revision 1.53
> diff -u -d -r1.52 -r1.53
> --- testmap.map.xml 1 Jul 2005 04:19:05 -0000 1.52
> +++ testmap.map.xml 12 Oct 2005 04:12:10 -0000 1.53
>.. -133,6 +133,7 @@
> <db-attribute name="ARTIST_ID" type="INTEGER"/>
> <db-attribute name="ESTIMATED_PRICE" type="DECIMAL" length="10" precision="2"/>
> <db-attribute name="GALLERY_ID" type="INTEGER"/>
> + <db-attribute name="PAINTING_DESCRIPTION" type="VARCHAR" length="255"/>
> <db-attribute name="PAINTING_ID" type="INTEGER" isPrimaryKey="true" isMandatory="true"/>
> <db-attribute name="PAINTING_TITLE" type="VARCHAR" isMandatory="true" length="255"/>
> </db-entity>
>.. -270,6 +271,7 @@
> </obj-entity>
> <obj-entity name="Painting" className="org.objectstyle.art.Painting" dbEntityName="PAINTING" superClassName="org.objectstyle.art.ArtDataObject">
> <obj-attribute name="estimatedPrice" type="java.math.BigDecimal" db-attribute-path="ESTIMATED_PRICE"/>
> + <obj-attribute name="paintingDescription" type="java.lang.String" db-attribute-path="PAINTING_DESCRIPTION"/>
> <obj-attribute name="paintingTitle" type="java.lang.String" db-attribute-path="PAINTING_TITLE"/>
> </obj-entity>
> <obj-entity name="Painting1" className="org.objectstyle.art.Painting1" dbEntityName="PAINTING1">
>
> Index: cayenne.xml
> ===================================================================
> RCS file: /cvsroot/cayenne/cayenne/src/tests/resources/test-resources/cayenne.xml,v
> retrieving revision 1.30
> retrieving revision 1.31
> diff -u -d -r1.30 -r1.31
> --- cayenne.xml 19 Sep 2005 03:55:03 -0000 1.30
> +++ cayenne.xml 12 Oct 2005 04:12:10 -0000 1.31
>.. -5,8 +5,8 @@
> <map name="map-db2" location="map-db2.map.xml"/>
> <map name="multi-tier" location="multi-tier.map.xml"/>
> <map name="locking" location="locking.map.xml"/>
> - <map name="map-db1" location="map-db1.map.xml"/>
> <map name="testmap" location="testmap.map.xml"/>
> + <map name="map-db1" location="map-db1.map.xml"/>
> <map name="people" location="people.map.xml"/>
> <map name="relationships" location="relationships.map.xml"/>
> </domain>
>
>
This archive was generated by hypermail 2.0.0 : Wed Oct 12 2005 - 12:45:36 EDT