Heikki Linnakangas <[EMAIL PROTECTED]> writes: > Well, I proposed disallowing using a different collation than the source > database, except for using template0 as the source. That's pretty limited, but > is trivial to implement and still let's you have databases with different > collations in the same cluster.
+ if (strcmp(dbtemplate, "template0") != 0 && + (strcmp(lc_collate, src_collation) || strcmp(lc_ctype, src_ctype))) + ereport(NOTICE, + (errmsg("database \"%s\" needs to be reindexed manually (REINDEX DATABASE)", + dbname))); + This isn't what you described but I think I prefer it this way as just a warning not an error. I can easily imagine cases where the admin knows there are either no indexes or no data in their database or where they're perfectly happy to reindex. A flat prohibition seems annoying. That said it's worth noting that this would tie our hands with proposals like retail vacuum which risk database corruption if they fail to refind an index pointer for a tuple... Incidentally it seems like the warning should actually explain *why* it needs to be reindexed manually and perhaps what the consequences are until it is. AFAIK we can't easily connect to the new database and do some fiddling with it, can we? If we could we could check if there are any non-empty indexes which depend on the collation and only print the warning if we find any (and even mark them invalid). -- Gregory Stark EnterpriseDB http://www.enterprisedb.com Ask me about EnterpriseDB's Slony Replication support! -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers