mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
In pg_upgrade, disallow migration of 8.3 clusters using contrib/ltree
because its internal format was changed in 8.4. Backpatch to 9.0 and 9.1. Report by depesz, diagnosis by Tom.
This commit is contained in:
@ -72,6 +72,7 @@ check_old_cluster(migratorContext *ctx, bool live_check,
|
||||
{
|
||||
old_8_3_check_for_name_data_type_usage(ctx, CLUSTER_OLD);
|
||||
old_8_3_check_for_tsquery_usage(ctx, CLUSTER_OLD);
|
||||
old_8_3_check_ltree_usage(ctx, CLUSTER_OLD);
|
||||
if (ctx->check)
|
||||
{
|
||||
old_8_3_rebuild_tsvector_tables(ctx, true, CLUSTER_OLD);
|
||||
|
Reference in New Issue
Block a user