Projekt

Allgemein

Profil

Fehler #426 » 0001-Rose-DB-Object-Metadata-Auto-kein-Vergleich-auf-TABL.patch

Bernd Bleßmann, 04.05.2020 18:44

Unterschiede anzeigen:

modules/override/Rose/DB/Object/Metadata/Auto.pm
153 153

  
154 154
          $col_info->{'TABLE_NAME'} = $db->unquote_table_name($col_info->{'TABLE_NAME'});
155 155

  
156
          next COLUMN unless($col_info->{'TABLE_CAT'}   eq $catalog &&
156
          next COLUMN unless(
157 157
                             $col_info->{'TABLE_SCHEM'} eq $schema &&
158 158
                             $col_info->{'TABLE_NAME'}  eq $table_unquoted);
159 159
        }
......
428 428
        CHECK_TABLE: # Make sure this column is from the right table
429 429
        {
430 430
          no warnings; # Allow undef coercion to empty string
431
          next FK  unless($fk_info->{'FK_TABLE_CAT'}   eq $catalog &&
431
          next FK  unless(
432 432
                          $fk_info->{'FK_TABLE_SCHEM'} eq $schema &&
433 433
                          $fk_info->{'FK_TABLE_NAME'}  eq $table);
434 434
        }
435
- 
(1-1/2)