summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorivan <ivan>2003-06-12 13:50:59 +0000
committerivan <ivan>2003-06-12 13:50:59 +0000
commitd7fa80b06b82168ed78e888835197e09b29491dd (patch)
treedf1d9a4ece1dfff67011f5536487a45064141a42 /bin
parent982fa001e4f9fdc6c544b43d7c21143facc8823d (diff)
remove overly-verbose debugging for now
Diffstat (limited to 'bin')
-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;
}