1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-08 06:02:22 +03:00

In pg_upgrade, create a script to incrementally generate more accurate

optimizer statistics so the cluster can be made available sooner.
This commit is contained in:
Bruce Momjian
2012-03-16 18:54:11 -04:00
parent d4318483e1
commit faec2815c8
3 changed files with 144 additions and 10 deletions

View File

@@ -283,10 +283,12 @@ void check_old_cluster(bool live_check,
void check_new_cluster(void);
void report_clusters_compatible(void);
void issue_warnings(char *sequence_script_file_name);
void output_completion_banner(char *deletion_script_file_name);
void output_completion_banner(char *analyze_script_file_name,
char *deletion_script_file_name);
void check_cluster_versions(void);
void check_cluster_compatibility(bool live_check);
void create_script_for_old_cluster_deletion(char **deletion_script_file_name);
void create_script_for_cluster_analyze(char **analyze_script_file_name);
/* controldata.c */