Index: trunk/phase3/maintenance/postgres/mediawiki_mysql2postgres.pl |
— | — | @@ -9,7 +9,6 @@ |
10 | 10 | ## If having UTF-8 problems, there are reports that adding --compatible=postgresql |
11 | 11 | ## may help. |
12 | 12 | |
13 | | - |
14 | 13 | use strict; |
15 | 14 | use warnings; |
16 | 15 | use Data::Dumper; |
— | — | @@ -275,7 +274,7 @@ |
276 | 275 | for my $t (@torder, 'objectcache', 'querycache') { |
277 | 276 | next if $t eq '---'; |
278 | 277 | my $tname = $special{$t}||$t; |
279 | | - printf qq{TRUNCATE TABLE %-20s CASCADE;\n}, qq{"$tname"}; |
| 278 | + printf qq{TRUNCATE TABLE %-20s\n}, qq{"$tname"}; |
280 | 279 | } |
281 | 280 | print "\n\n"; |
282 | 281 | |