Index: trunk/phase3/includes/DatabasePostgres.php |
— | — | @@ -694,7 +694,7 @@ |
695 | 695 | $sql = "INSERT INTO $table (" . implode( ',', $keys ) . ') VALUES '; |
696 | 696 | |
697 | 697 | if ( $multi ) { |
698 | | - if ( $wgDBversion >= 8.1 ) { |
| 698 | + if ( $wgDBversion >= 8.2 ) { |
699 | 699 | $first = true; |
700 | 700 | foreach ( $args as $row ) { |
701 | 701 | if ( $first ) { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -372,8 +372,8 @@ |
373 | 373 | disable user setting of PHP include_path setting |
374 | 374 | * glob() is horribly unreliable and doesn't work on some systems, including |
375 | 375 | free.fr shared hosting. No longer using it in Language::getLanguageNames() |
| 376 | +* (bug 10763) Fix multi-insert logic for Postgres. |
376 | 377 | |
377 | | - |
378 | 378 | == API changes since 1.10 == |
379 | 379 | |
380 | 380 | Full API documentation is available at http://www.mediawiki.org/wiki/API |