• last updated 3 hours ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
Bug #3240 - Significantly speed up slow queries in upgrade script...

Bug #3240 - Significantly speed up slow queries in upgrade script...

Merging back to HEAD branch oacs-5-8 (using tag vg-merge-oacs-5-8-from-20141027).

  1. … 2541 more files in changeset.
cleanup in cr::keyword::* namespace

one cannot advocate to create a keyword with

content::keyword::item_assign and query it with

cr::keyword::item_get_assigned)

- marked the following function as deprecaed

* cr::keyword::get_children

* cr::keyword::get_keyword_id

* cr::keyword::get_options_flat

* cr::keyword::item_get_assigned

* cr::keyword::item_unassign

* cr::keyword::item_unassign_children

- added new functions:

* content::keyword::get_children

* content::keyword::get_keyword_id

* content::keyword::get_options_flat

* content::keyword::item_get_assigned

* content::keyword::item_unassign_children

- updated regression test

  1. … 3 more files in changeset.
- remove commented code

file upgrade-5.8.1d7-5.8.1d8.sql was initially added on branch oacs-5-8.

    • -0
    • +0
    ./upgrade/upgrade-5.8.1d7-5.8.1d8.sql
- add missing function args

  1. … 7 more files in changeset.
- use external command "find" instead of tcllib package fileutil for speed and better filtering

- add index for much quicker reverse lookup file names in the content repository

  1. … 5 more files in changeset.
file upgrade-5.8.1d5-5.8.1d6.sql was initially added on branch oacs-5-8.

    • -0
    • +0
    ./upgrade/upgrade-5.8.1d5-5.8.1d6.sql
- provide function args for content_keyword__new/9

*** empty log message ***

file upgrade-5.8.0a1-5.8.0a2.sql was initially added on branch oacs-5-8.

    • -0
    • +0
    ./upgrade/upgrade-5.8.0a1-5.8.0a2.sql
  1. … 1 more file in changeset.
- add missing mime-types (application/x-zip, application/x-sh, application/rdf+xml) for postgres and oracle

  1. … 2 more files in changeset.
make sure we exclude null paths from cr_files_to_delete

Some time ago some plpgsql functions were changed in order to be compatible with pg 8.x, create scripts were modified but upgrade scripts were missing ( at least i couldn't find them) http://fisheye.openacs.org/changelog/OpenACS?cs=MAIN%3Ajeffd%3A20090210183154 . Bumping up package versions accordingly.

    • -0
    • +182
    ./upgrade/upgrade-5.8.0d3-5.8.0d4.sql
  1. … 7 more files in changeset.
- missing index and foreign key constraints on cr_item_publish_audit fixed

    • -0
    • +16
    ./upgrade/upgrade-5.8.0d2-5.8.0d3.sql
  1. … 1 more file in changeset.
Upgrade scripts contain the following changes:

- getting right name of triggers, following the pattern *_tr

- redefining funtion arguments for each function using define_function_args

- getting rid of unncesary backslashes, used for escaping, in some functions.

- redefinitions of content_type__refresh_trigger and content_type__drop_type in order to get rid of some 7.2 vs 7.3 querying.

    • -0
    • +683
    ./upgrade/upgrade-5.8.0d1-5.8.0d2.sql
  1. … 3 more files in changeset.
Bring PostgreSQL functions closer to the current level of PL/pgSQL:

- upgrade PL/pgSQL functions to the $$ notation (recommended since pg8.0, jan 2005).

- get rid of backslash usages in function definitions

- drop aliases in favor of named function arguments (recommended since pg8.0)

- fix wrong function_args, add missing function_args, align default semantics

with the defaults in pg (providing "null" as default means the argument is

optional).

- change return types of triggers from "opaque" to "trigger" (recommended since pg8.0)

- unify names of triggers *_tr

- removed some version dependencies of pg 7.2 and 7.3

  1. … 40 more files in changeset.
Backed out change to make content richtext rather than text, because of

xotcl-core, can't have the type change depending on whether or not that

was previously installed and can't change it to richtext without (probably)

breaking xotcl stuff. Sucks but that's life.

  1. … 2 more files in changeset.
Argh! "content" wants to be richtext, not text !!!

  1. … 3 more files in changeset.
file upgrade-5.7.0d4-5.7.0d5.sql was initially added on branch oacs-5-7.

    • -0
    • +0
    ./upgrade/upgrade-5.7.0d4-5.7.0d5.sql
  1. … 1 more file in changeset.
1. Added "--default foo" style comments to new PL/pgSQL function parameters

because xotcl-core, rather than use the metadata created by define_function_params,

ASSIGNS SEMANTICS TO THESE SQL COMMENTS. Bah. If I truly cared about quality

I'd insist the xotcl people fix their code and do things right, but I know that

would never happen so ... kludge away.

2. xotcl-core adds CR attributes (rather than fix core). So my fixing of

core conflicts, meaning I have to kludge again. Still needs to be fixed

for oracle.

    • -2
    • +13
    ./upgrade/upgrade-5.7.0d3-5.7.0d4.sql
  1. … 3 more files in changeset.
Added a couple of CR revision attributes - the oracle equivalent of the

previous PG commit.

  1. … 4 more files in changeset.
Adding a couple of attributes to make packages working with meta-data less

kludgey. PG-only with this commit, Oracle to follow.

    • -0
    • +25
    ./upgrade/upgrade-5.7.0d3-5.7.0d4.sql
  1. … 1 more file in changeset.
Moved table building and column adding code from content repository to

kernel, so all objects can benefit. Part of the acs object management package

work.

    • -2
    • +12
    ./upgrade/upgrade-5.7.0d2-5.7.0d3.sql
  1. … 3 more files in changeset.
Upgrade scripts for changes on object metadata creation (adding automatic

table and column creation to base objects as well as CR object, object views,

etc).

    • -0
    • +105
    ./upgrade/upgrade-5.7.0d2-5.7.0d3.sql
  1. … 3 more files in changeset.
Changes for supporting postgresql 9.0:

- Avoiding usage of SQL reserved keywords on plpsql functions (plpsql lexer and parser were reworked).

- Fixing all those places on which FROM clause was automatically added by PG ( PG Config add_missing_from parameter was removed for this release of PG ).

Many thanks to Tracy Adams and Jeff Lu for providing first version of the patches.

    • -0
    • +147
    ./upgrade/upgrade-5.7.0d1-5.7.0d2.sql
  1. … 15 more files in changeset.
Make sure you always cascade when dropping the views or it will fail.

    • -0
    • +337
    ./upgrade/upgrade-5.6.0d3-5.6.0d4.sql
  1. … 1 more file in changeset.
Fix support for NULL table name in CR-derived object types

    • -0
    • +212
    ./upgrade/upgrade-5.6.0d2-5.6.0d3.sql
  1. … 3 more files in changeset.
Fixed a problem with the deletion of lob.sql-based ("pseudo-lob") binary

storage.

    • -0
    • +6
    ./upgrade/upgrade-5.5.0d3-5.5.0d4.sql
  1. … 1 more file in changeset.