Fix bucket name truncation in the bucket log, and don't forget to check the delta interval when summarizing.

This commit is contained in:
Colin Kuskie 2011-10-20 20:25:16 -07:00
parent 9ef8f098cf
commit b6c4adc8e0
4 changed files with 18 additions and 1 deletions

View file

@ -4,6 +4,7 @@
- fixed #12201: AssetReport - no selects.
- fixed #12269: Login / Loginbox with encryptlogin
- fixed #12271: Calendar List View does not always show labels
- fixed Passive Analytics, UI, Progress Bar, server load.
7.10.23
- fixed #12225: Stock asset, multiple instances on a page

View file

@ -33,6 +33,7 @@ my $session = start(); # this line required
# upgrade functions go here
addPALastLogTable($session);
addForkRedirect($session);
extendBucketName($session);
finish($session); # this line required
@ -68,6 +69,18 @@ EOSQL
print "DONE!\n" unless $quiet;
}
#----------------------------------------------------------------------------
# Describe what our function does
sub extendBucketName {
my $session = shift;
print "\tExtend the size of the bucket name in the bucketLog table for Passive Analytics... " unless $quiet;
# and here's our code
$session->db->write(<<EOSQL);
ALTER TABLE bucketLog CHANGE COLUMN Bucket Bucket CHAR(255)
EOSQL
print "DONE!\n" unless $quiet;
}
#----------------------------------------------------------------------------
# Describe what our function does
#sub exampleFunction {