You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Add support for unlogged sequences. Unlike for unlogged tables, thisis not a performance feature. It allows sequences associated withunlogged tables to be excluded from replication.A new subcommand ALTER SEQUENCE ... SET LOGGED/UNLOGGED is added.An identity/serial sequence now automatically gets and follows thepersistence level (logged/unlogged) of its owning table. (Thesequences owned by temporary tables were already temporary through theseparate mechanism in RangeVarAdjustRelationPersistence().) But youcan still change the persistence of an owned sequence separately.Also, pg_dump and pg_upgrade preserve the persistence of existingsequences.Discussion:https://www.postgresql.org/message-id/flat/04e12818-2f98-257c-b926-2845d74ed04f%402ndquadrant.com