Uploaded image for project: 'OpenJPA'
  1. OpenJPA
  2. OPENJPA-1605

ReverseMappingTool (SchemaGenerator) bug

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 2.0.0-beta3
    • 2.0.0
    • None
    • None

    Description

      org.apache.openjpa.jdbc.schema.SchemaGenerator.java
      =============================================
      ...
      ...
      public void generateTables(DBIdentifier schemaName, DBIdentifier tableName,
      Connection conn, DatabaseMetaData meta) {
      ...
      Table table;
      DBIdentifier tableSchema = DBIdentifier.NULL;
      for (int i = 0; cols != null && i < cols.length; i++) {
      if (DBIdentifier.isNull(tableName) || tableName.equals("%"))

      { <--- bug code line tableName = cols[i].getTableIdentifier(); <--- bug code line }

      ...
      ...
      }
      }

      if parameter tableName is null, than tableName is always been set the first column table Identifier
      --> "cols[0].getTableIdentifier() "
      this cause only generate first table class file with wrong columns.

      Attachments

        Issue Links

          Activity

            People

              techhusky Jeremy Bauer
              leo.tu Leo Tu
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: