summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/fix-sequences2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/fix-sequences b/bin/fix-sequences
index 1ef7bd654..2ff89d3e5 100755
--- a/bin/fix-sequences
+++ b/bin/fix-sequences
@@ -55,7 +55,7 @@ foreach my $table ( @tables ) {
my $sql = "SELECT setval( '$seq',
( SELECT max($primary_key) FROM $table ) );";
- warn $col->default. " $seq\n$sql\n";
+ #warn $col->default. " $seq\n$sql\n";
$dbh->do( $sql ) or die $dbh->errstr;
}