failure upgrading 4.0.0 to 4.0.1 (postgresql)

Author Message

Giovanni Gigante

Thursday 27 November 2008 8:51:30 am

When upgrading ezpublish from 4.0.0 to 4.0.1, using the procedure described here
http://ez.no/doc/ez_publish/upgrading/upgrading_to_4_0/from_4_0_x_to_4_0_y

at step 2 (upgrading the database), I enter
psql -d MYDATABASE -U MYDBUSER < update/database/postgresql/4.0/dbupdate-4.0.0-to-4.0.1.sql

and I get this:
UPDATE 1
UPDATE 1
CREATE INDEX
CREATE INDEX
CREATE INDEX
ALTER TABLE
ALTER TABLE
ERROR: column "alias_redirects" contains null values

database is postgresql 8.1.11.

Giovanni Gigante

Friday 28 November 2008 8:15:50 am

I <i>think</i> I have found a fix for this problem.

The last lines of the update/database/postgresql/4.0/dbupdate-4.0.0-to-4.0.1.sql script are:

ALTER TABLE ezurlalias_ml ADD COLUMN alias_redirects INT;
ALTER TABLE ezurlalias_ml ALTER COLUMN alias_redirects SET default 1;
ALTER TABLE ezurlalias_ml ALTER COLUMN alias_redirects SET NOT NULL;

This cannot work, since SET DEFAULT does not apply to existing rows.
So it should be:

ALTER TABLE ezurlalias_ml ADD COLUMN alias_redirects INT;
ALTER TABLE ezurlalias_ml ALTER COLUMN alias_redirects SET default 1;
UPDATE ezurlalias_ml SET alias_redirects=1;
ALTER TABLE ezurlalias_ml ALTER COLUMN alias_redirects SET NOT NULL;

...Still the fun (?) is not over. Arriving at step 5 of the upgrade procedure, this is what I get:

$ php extension/ezurlaliasmigration/scripts/migrate.php

The number of custom url aliases are:
The number of history entries are:

Segmentation fault

now I am really stuck...

Kristof Coomans

Friday 28 November 2008 9:38:56 am

Hi Giovanni

This was reported in our issue tracker here: http://issues.ez.no/13681

independent eZ Publish developer and service provider | http://blog.coomanskristof.be | http://ezpedia.org

Giovanni Gigante

Friday 28 November 2008 10:44:12 am

Ok, that's for the first problem. But what about the second one?

The segfault seem to happen at the

$script->shutdown();

line of the script extension/ezurlaliasmigration/scripts/migrate.php

(Running on php 5.2.4)

Giovanni Gigante

Saturday 21 March 2009 8:08:06 am

Now I think this segfault is a postgresql bug. For a possible workaround, see
http://issues.ez.no/IssueView.php?Id=14639&activeItem=1

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.

eZ debug

Timing: Jan 31 2025 03:30:56
Script start
Timing: Jan 31 2025 03:30:56
Module start 'layout'
Timing: Jan 31 2025 03:30:56
Module start 'content'
Timing: Jan 31 2025 03:30:56
Module end 'content'
Timing: Jan 31 2025 03:30:56
Script end

Main resources:

Total runtime0.0293 sec
Peak memory usage8,192.0000 KB
Database Queries3

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0070 588.3828151.2422
Module start 'layout' 0.00700.0043 739.6250220.7500
Module start 'content' 0.01130.0159 960.37501,001.9922
Module end 'content' 0.02720.0021 1,962.367233.9922
Script end 0.0292  1,996.3594 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.003110.7226140.0002
Check MTime0.00113.8885140.0001
Mysql Total
Database connection0.00103.306310.0010
Mysqli_queries0.00289.525530.0009
Looping result0.00000.057810.0000
Template Total0.00144.910.0014
Template load0.00113.883610.0011
Template processing0.00030.966610.0003
Override
Cache load0.00062.151510.0006
General
dbfile0.00206.821880.0002
String conversion0.00000.030140.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 1
 Number of unique templates used: 1

Time used to render debug report: 0.0001 secs