Changeset 5427


Ignore:
Timestamp:
Sep 24, 2010, 11:24:49 AM (13 years ago)
Author:
Nicklas Nordborg
Message:

References #1488: Update to Hibernate 3.5.6

Do not show 'null' sql statements in the progress reporter.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/core/net/sf/basedb/core/hibernate/SchemaGenerator.java

    r5388 r5427  
    125125        if (progress != null)
    126126        {
    127           if (numDone % interval == 0)
     127          if ((numDone % interval == 0) && (actualSql != null))
    128128          {
    129129            progress.display((100 * numDone) / numStatements, "--" + StringUtil.trimString(actualSql, 45));
Note: See TracChangeset for help on using the changeset viewer.