summaryrefslogtreecommitdiff
path: root/src/backend/commands/subscriptioncmds.c
Commit message (Expand)AuthorAgeFilesLines
* Improve error message for pg_create_subscription.Nathan Bossart2023-05-121-1/+3
* Fix typos in commentsMichael Paquier2023-05-021-2/+2
* Remove some tabs in SQL code in C string literalsPeter Eisentraut2023-04-191-3/+3
* Add a run_as_owner option to subscriptions.Robert Haas2023-04-041-4/+19
* Add new predefined role pg_create_subscription.Robert Haas2023-03-301-21/+117
* Avoid syncing data twice for the 'publish_via_partition_root' option.Amit Kapila2023-03-291-10/+49
* Add SysCacheGetAttrNotNull for guaranteed not-null attrsDaniel Gustafsson2023-03-251-6/+4
* Track logrep apply workers' last start times to avoid useless waits.Tom Lane2023-01-221-0/+10
* Perform apply of large transactions by parallel workers.Amit Kapila2023-01-091-5/+62
* Wake up a subscription's replication worker processes after DDL.Tom Lane2023-01-061-0/+6
* Update copyright for 2023Bruce Momjian2023-01-021-1/+1
* Refactor ownercheck functionsPeter Eisentraut2022-11-131-3/+3
* Improve errhint for ALTER SUBSCRIPTION ADD/DROP PUBLICATIONAlvaro Herrera2022-10-181-11/+16
* Improve the WARNING message for CREATE SUBSCRIPTION.Amit Kapila2022-10-131-3/+2
* Add a common function to generate the origin name.Amit Kapila2022-10-111-7/+8
* Message style improvementsPeter Eisentraut2022-09-241-4/+2
* Message wording improvementsPeter Eisentraut2022-09-161-3/+3
* Fix grammar in error messageJohn Naylor2022-09-151-2/+2
* Make the tablesync worker's replication origin drop logic robust.Amit Kapila2022-09-121-14/+11
* Raise a warning if there is a possibility of data from multiple origins.Amit Kapila2022-09-081-5/+128
* Drop replication origin slots before tablesync worker exits.Amit Kapila2022-08-301-11/+14
* Avoid using list_length() to test for empty list.Tom Lane2022-08-171-1/+1
* Refactor code in charge of grabbing the relations of a subscriptionMichael Paquier2022-07-271-2/+2
* Allow users to skip logical replication of data having origin.Amit Kapila2022-07-211-3/+40
* pgstat: drop subscription stats without slot as well, fix commentAndres Freund2022-07-061-8/+2
* Add construct_array_builtin, deconstruct_array_builtinPeter Eisentraut2022-07-011-2/+1
* Prohibit combining publications with different column lists.Amit Kapila2022-06-021-5/+23
* Pre-beta mechanical code beautification.Tom Lane2022-05-121-7/+7
* Remove extraneous blank lines before block-closing bracesAlvaro Herrera2022-04-131-1/+0
* Revert "Logical decoding of sequences"Tomas Vondra2022-04-071-88/+13
* Reorder subskiplsn in pg_subscription to avoid alignment issues.Amit Kapila2022-04-071-1/+1
* pgstat: scaffolding for transactional stats creation / drop.Andres Freund2022-04-061-1/+3
* pgstat: stats collector references in comments.Andres Freund2022-04-061-2/+2
* Raise a WARNING for missing publications.Amit Kapila2022-03-311-20/+113
* Add decoding of sequences to built-in replicationTomas Vondra2022-03-241-13/+88
* Add ALTER SUBSCRIPTION ... SKIP.Amit Kapila2022-03-221-0/+73
* Optionally disable subscriptions on error.Amit Kapila2022-03-141-2/+25
* Fix various typos, grammar and code style in comments and docsMichael Paquier2022-01-251-1/+1
* Respect permissions within logical replication.Jeff Davis2022-01-071-0/+2
* Update copyright for 2022Bruce Momjian2022-01-071-1/+1
* Improve parsing of options of CREATE/ALTER SUBSCRIPTIONMichael Paquier2021-12-081-40/+33
* Add a view to show the stats of subscription workers.Amit Kapila2021-11-301-1/+15
* Fix Alter Subscription's Add/Drop Publication behavior.Amit Kapila2021-08-241-6/+3
* Add prepare API support for streaming transactions in logical replication.Amit Kapila2021-08-041-25/+0
* Don't allow to set replication slot_name as ''.Amit Kapila2021-07-191-0/+2
* Update comments for AlterSubscription.Amit Kapila2021-07-191-0/+7
* Improve reporting of "conflicting or redundant options" errors.Dean Rasheed2021-07-151-39/+27
* Add support for prepared transactions to built-in logical replication.Amit Kapila2021-07-141-2/+129
* Refactor function parse_subscription_options.Amit Kapila2021-07-061-233/+206
* Fix variable initialization with ALTER SUBSCRIPTION DROP PUBLICATIONMichael Paquier2021-06-281-1/+1