~ubuntu-branches/ubuntu/trusty/postgresql-9.3/trusty-updates

« back to all changes in this revision

Viewing changes to contrib/pg_upgrade/pg_upgrade.c

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2016-05-12 16:06:03 UTC
  • mfrom: (1.1.16) (19.1.4 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20160512160603-8h0t7au3bkfjuiv4
Tags: 9.3.13-0ubuntu0.14.04
* New upstream bug fix release. (LP: #1581016)
  - See http://www.postgresql.org/docs/9.3/static/release-9-3-13.html for
    details.

Show diffs side-by-side

added added

removed removed

Lines of Context:
525
525
 
526
526
        /*
527
527
         * We don't have minmxids for databases or relations in pre-9.3
528
 
         * clusters, so set those after we have restores the schemas.
 
528
         * clusters, so set those after we have restored the schema.
529
529
         */
530
530
        if (GET_MAJOR_VERSION(old_cluster.major_version) < 903)
531
531
                set_frozenxids(true);
532
532
 
533
 
        optionally_create_toast_tables();
534
 
 
535
533
        /* regenerate now that we have objects in the databases */
536
534
        get_db_and_rel_infos(&new_cluster);
537
535