gdamour     2005/10/18 21:47:56

  Modified:    modules/itests/src/itest/org/openejb/test
                        DerbyTestDatabase.java
  Log:

  GERONIMO-1090 By default, CMP fields of type char should be mapped to the
  CHAR SQL type.
  
  Add an integration test.
  
  Revision  Changes    Path
  1.8       +2 -2      
openejb/modules/itests/src/itest/org/openejb/test/DerbyTestDatabase.java
  
  Index: DerbyTestDatabase.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/itests/src/itest/org/openejb/test/DerbyTestDatabase.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- DerbyTestDatabase.java    20 Aug 2005 07:53:02 -0000      1.7
  +++ DerbyTestDatabase.java    19 Oct 2005 01:47:55 -0000      1.8
  @@ -81,7 +81,7 @@
   
       private static final String DROP_PRODUCT = "DROP TABLE product";
   
  -    private static final String CREATE_STORAGE = "CREATE TABLE storage (id 
INTEGER, blob_column BLOB(2M))";
  +    private static final String CREATE_STORAGE = "CREATE TABLE storage (id 
INTEGER, blob_column BLOB(2M), char_column CHAR(1))";
   
       private static final String DROP_STORAGE = "DROP TABLE storage";
   
  
  
  

Reply via email to