Re: Restore replication settings when modifying a field type
Quan Zongliang <quanzongliang@foxmail.com>
From: Quan Zongliang <quanzongliang@foxmail.com>
To: Peter Eisentraut <peter.eisentraut@2ndquadrant.com>,
Euler Taveira <euler@timbira.com.br>,
Kyotaro Horiguchi <horikyota.ntt@gmail.com>
Cc: pgsql-hackers <pgsql-hackers@postgresql.org>
Date: 2020-01-15T00:30:42Z
Lists: pgsql-hackers
On 2020/1/3 17:14, Peter Eisentraut wrote: > On 2019-11-01 04:39, Euler Taveira wrote: >> ATExecAlterColumnType records everything that depends on the column >> and for indexes it saves the definition (via pg_get_indexdef_string). >> Definition is not sufficient for reconstructing the replica identity >> information because there is not such keyword for replica identity in >> CREATE INDEX. The new index should call relation_mark_replica_identity >> to fix pg_index.indisreplident. > > Yeah, I don't think we need to do the full dance of reverse compiling > the SQL command and reexecuting it, as the patch currently does. That's > only necessary for rebuilding the index itself. For re-setting the > replica identity, we can just use the internal API as you say. > > Also, a few test cases would be nice for this patch. > I'm a little busy. I'll write a new patch in a few days.
Commits
-
Preserve replica identity index across ALTER TABLE rewrite
- c15d35041206 9.5.22 landed
- 2f0dd9d93efe 9.6.18 landed
- 02530da73f04 10.13 landed
- 15cbbf81a58f 11.8 landed
- c9ef507e82eb 12.3 landed
- 1cc9c2412cc9 13.0 landed
-
Prevent reindex of invalid indexes on TOAST tables
- 61d7c7bce368 13.0 cited