PostgreSQL Source Code git master
Loading...
Searching...
No Matches
subscriptioncmds.h File Reference
Include dependency graph for subscriptioncmds.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

ObjectAddress CreateSubscription (ParseState *pstate, CreateSubscriptionStmt *stmt, bool isTopLevel)
 
ObjectAddress AlterSubscription (ParseState *pstate, AlterSubscriptionStmt *stmt, bool isTopLevel)
 
void DropSubscription (DropSubscriptionStmt *stmt, bool isTopLevel)
 
ObjectAddress AlterSubscriptionOwner (const char *name, Oid newOwnerId)
 
void AlterSubscriptionOwner_oid (Oid subid, Oid newOwnerId)
 
char defGetStreamingMode (DefElem *def)
 
void CheckSubDeadTupleRetention (bool check_guc, bool sub_disabled, int elevel_for_sub_disabled, bool retain_dead_tuples, bool retention_active, bool max_retention_set)
 

Function Documentation

◆ AlterSubscription()

ObjectAddress AlterSubscription ( ParseState pstate,
AlterSubscriptionStmt stmt,
bool  isTopLevel 
)
extern

Definition at line 1370 of file subscriptioncmds.c.

1372{
1373 Relation rel;
1375 bool nulls[Natts_pg_subscription];
1378 HeapTuple tup;
1379 Oid subid;
1380 bool update_tuple = false;
1381 bool update_failover = false;
1382 bool update_two_phase = false;
1383 bool check_pub_rdt = false;
1384 bool retain_dead_tuples;
1385 int max_retention;
1386 bool retention_active;
1387 char *origin;
1388 Subscription *sub;
1391 SubOpts opts = {0};
1392
1394
1395 /* Fetch the existing tuple. */
1397 CStringGetDatum(stmt->subname));
1398
1399 if (!HeapTupleIsValid(tup))
1400 ereport(ERROR,
1402 errmsg("subscription \"%s\" does not exist",
1403 stmt->subname)));
1404
1406 subid = form->oid;
1407
1408 /* must be owner */
1411 stmt->subname);
1412
1413 sub = GetSubscription(subid, false);
1414
1416 origin = sub->origin;
1419
1420 /*
1421 * Don't allow non-superuser modification of a subscription with
1422 * password_required=false.
1423 */
1424 if (!sub->passwordrequired && !superuser())
1425 ereport(ERROR,
1427 errmsg("password_required=false is superuser-only"),
1428 errhint("Subscriptions with the password_required option set to false may only be created or modified by the superuser.")));
1429
1430 /* Lock the subscription so nobody else can do anything with it. */
1432
1433 /* Form a new tuple. */
1434 memset(values, 0, sizeof(values));
1435 memset(nulls, false, sizeof(nulls));
1436 memset(replaces, false, sizeof(replaces));
1437
1438 switch (stmt->kind)
1439 {
1441 {
1452
1453 parse_subscription_options(pstate, stmt->options,
1455
1456 if (IsSet(opts.specified_opts, SUBOPT_SLOT_NAME))
1457 {
1458 /*
1459 * The subscription must be disabled to allow slot_name as
1460 * 'none', otherwise, the apply worker will repeatedly try
1461 * to stream the data using that slot_name which neither
1462 * exists on the publisher nor the user will be allowed to
1463 * create it.
1464 */
1465 if (sub->enabled && !opts.slot_name)
1466 ereport(ERROR,
1468 errmsg("cannot set %s for enabled subscription",
1469 "slot_name = NONE")));
1470
1471 if (opts.slot_name)
1474 else
1475 nulls[Anum_pg_subscription_subslotname - 1] = true;
1477 }
1478
1479 if (opts.synchronous_commit)
1480 {
1482 CStringGetTextDatum(opts.synchronous_commit);
1484 }
1485
1486 if (IsSet(opts.specified_opts, SUBOPT_BINARY))
1487 {
1489 BoolGetDatum(opts.binary);
1491 }
1492
1493 if (IsSet(opts.specified_opts, SUBOPT_STREAMING))
1494 {
1496 CharGetDatum(opts.streaming);
1498 }
1499
1500 if (IsSet(opts.specified_opts, SUBOPT_DISABLE_ON_ERR))
1501 {
1503 = BoolGetDatum(opts.disableonerr);
1505 = true;
1506 }
1507
1508 if (IsSet(opts.specified_opts, SUBOPT_PASSWORD_REQUIRED))
1509 {
1510 /* Non-superuser may not disable password_required. */
1511 if (!opts.passwordrequired && !superuser())
1512 ereport(ERROR,
1514 errmsg("password_required=false is superuser-only"),
1515 errhint("Subscriptions with the password_required option set to false may only be created or modified by the superuser.")));
1516
1518 = BoolGetDatum(opts.passwordrequired);
1520 = true;
1521 }
1522
1523 if (IsSet(opts.specified_opts, SUBOPT_RUN_AS_OWNER))
1524 {
1526 BoolGetDatum(opts.runasowner);
1528 }
1529
1530 if (IsSet(opts.specified_opts, SUBOPT_TWOPHASE_COMMIT))
1531 {
1532 /*
1533 * We need to update both the slot and the subscription
1534 * for the two_phase option. We can enable the two_phase
1535 * option for a slot only once the initial data
1536 * synchronization is done. This is to avoid missing some
1537 * data as explained in comments atop worker.c.
1538 */
1539 update_two_phase = !opts.twophase;
1540
1541 CheckAlterSubOption(sub, "two_phase", update_two_phase,
1542 isTopLevel);
1543
1544 /*
1545 * Modifying the two_phase slot option requires a slot
1546 * lookup by slot name, so changing the slot name at the
1547 * same time is not allowed.
1548 */
1549 if (update_two_phase &&
1550 IsSet(opts.specified_opts, SUBOPT_SLOT_NAME))
1551 ereport(ERROR,
1553 errmsg("\"slot_name\" and \"two_phase\" cannot be altered at the same time")));
1554
1555 /*
1556 * Note that workers may still survive even if the
1557 * subscription has been disabled.
1558 *
1559 * Ensure workers have already been exited to avoid
1560 * getting prepared transactions while we are disabling
1561 * the two_phase option. Otherwise, the changes of an
1562 * already prepared transaction can be replicated again
1563 * along with its corresponding commit, leading to
1564 * duplicate data or errors.
1565 */
1566 if (logicalrep_workers_find(subid, true, true))
1567 ereport(ERROR,
1569 errmsg("cannot alter \"two_phase\" when logical replication worker is still running"),
1570 errhint("Try again after some time.")));
1571
1572 /*
1573 * two_phase cannot be disabled if there are any
1574 * uncommitted prepared transactions present otherwise it
1575 * can lead to duplicate data or errors as explained in
1576 * the comment above.
1577 */
1578 if (update_two_phase &&
1580 LookupGXactBySubid(subid))
1581 ereport(ERROR,
1583 errmsg("cannot disable \"two_phase\" when prepared transactions exist"),
1584 errhint("Resolve these transactions and try again.")));
1585
1586 /* Change system catalog accordingly */
1588 CharGetDatum(opts.twophase ?
1592 }
1593
1594 if (IsSet(opts.specified_opts, SUBOPT_FAILOVER))
1595 {
1596 /*
1597 * Similar to the two_phase case above, we need to update
1598 * the failover option for both the slot and the
1599 * subscription.
1600 */
1601 update_failover = true;
1602
1603 CheckAlterSubOption(sub, "failover", update_failover,
1604 isTopLevel);
1605
1607 BoolGetDatum(opts.failover);
1609 }
1610
1611 if (IsSet(opts.specified_opts, SUBOPT_RETAIN_DEAD_TUPLES))
1612 {
1614 BoolGetDatum(opts.retaindeadtuples);
1616
1617 /*
1618 * Update the retention status only if there's a change in
1619 * the retain_dead_tuples option value.
1620 *
1621 * Automatically marking retention as active when
1622 * retain_dead_tuples is enabled may not always be ideal,
1623 * especially if retention was previously stopped and the
1624 * user toggles retain_dead_tuples without adjusting the
1625 * publisher workload. However, this behavior provides a
1626 * convenient way for users to manually refresh the
1627 * retention status. Since retention will be stopped again
1628 * unless the publisher workload is reduced, this approach
1629 * is acceptable for now.
1630 */
1631 if (opts.retaindeadtuples != sub->retaindeadtuples)
1632 {
1634 BoolGetDatum(opts.retaindeadtuples);
1636
1637 retention_active = opts.retaindeadtuples;
1638 }
1639
1640 CheckAlterSubOption(sub, "retain_dead_tuples", false, isTopLevel);
1641
1642 /*
1643 * Workers may continue running even after the
1644 * subscription has been disabled.
1645 *
1646 * To prevent race conditions (as described in
1647 * CheckAlterSubOption()), ensure that all worker
1648 * processes have already exited before proceeding.
1649 */
1650 if (logicalrep_workers_find(subid, true, true))
1651 ereport(ERROR,
1653 errmsg("cannot alter retain_dead_tuples when logical replication worker is still running"),
1654 errhint("Try again after some time.")));
1655
1656 /*
1657 * Notify the launcher to manage the replication slot for
1658 * conflict detection. This ensures that replication slot
1659 * is efficiently handled (created, updated, or dropped)
1660 * in response to any configuration changes.
1661 */
1663
1664 check_pub_rdt = opts.retaindeadtuples;
1665 retain_dead_tuples = opts.retaindeadtuples;
1666 }
1667
1668 if (IsSet(opts.specified_opts, SUBOPT_MAX_RETENTION_DURATION))
1669 {
1671 Int32GetDatum(opts.maxretention);
1673
1674 max_retention = opts.maxretention;
1675 }
1676
1677 /*
1678 * Ensure that system configuration parameters are set
1679 * appropriately to support retain_dead_tuples and
1680 * max_retention_duration.
1681 */
1682 if (IsSet(opts.specified_opts, SUBOPT_RETAIN_DEAD_TUPLES) ||
1683 IsSet(opts.specified_opts, SUBOPT_MAX_RETENTION_DURATION))
1687 (max_retention > 0));
1688
1689 if (IsSet(opts.specified_opts, SUBOPT_ORIGIN))
1690 {
1692 CStringGetTextDatum(opts.origin);
1694
1695 /*
1696 * Check if changes from different origins may be received
1697 * from the publisher when the origin is changed to ANY
1698 * and retain_dead_tuples is enabled.
1699 */
1702
1703 origin = opts.origin;
1704 }
1705
1706 if (IsSet(opts.specified_opts, SUBOPT_WAL_RECEIVER_TIMEOUT))
1707 {
1709 CStringGetTextDatum(opts.wal_receiver_timeout);
1711 }
1712
1713 update_tuple = true;
1714 break;
1715 }
1716
1718 {
1719 parse_subscription_options(pstate, stmt->options,
1721 Assert(IsSet(opts.specified_opts, SUBOPT_ENABLED));
1722
1723 if (!sub->slotname && opts.enabled)
1724 ereport(ERROR,
1726 errmsg("cannot enable subscription that does not have a slot name")));
1727
1728 /*
1729 * Check track_commit_timestamp only when enabling the
1730 * subscription in case it was disabled after creation. See
1731 * comments atop CheckSubDeadTupleRetention() for details.
1732 */
1733 CheckSubDeadTupleRetention(opts.enabled, !opts.enabled,
1735 sub->retentionactive, false);
1736
1738 BoolGetDatum(opts.enabled);
1740
1741 if (opts.enabled)
1743
1744 update_tuple = true;
1745
1746 /*
1747 * The subscription might be initially created with
1748 * connect=false and retain_dead_tuples=true, meaning the
1749 * remote server's status may not be checked. Ensure this
1750 * check is conducted now.
1751 */
1752 check_pub_rdt = sub->retaindeadtuples && opts.enabled;
1753 break;
1754 }
1755
1757 /* Load the library providing us libpq calls. */
1758 load_file("libpqwalreceiver", false);
1759 /* Check the connection info string. */
1760 walrcv_check_conninfo(stmt->conninfo,
1761 sub->passwordrequired && !sub->ownersuperuser);
1762
1764 CStringGetTextDatum(stmt->conninfo);
1766 update_tuple = true;
1767
1768 /*
1769 * Since the remote server configuration might have changed,
1770 * perform a check to ensure it permits enabling
1771 * retain_dead_tuples.
1772 */
1774 break;
1775
1777 {
1779 parse_subscription_options(pstate, stmt->options,
1781
1783 publicationListToArray(stmt->publication);
1785
1786 update_tuple = true;
1787
1788 /* Refresh if user asked us to. */
1789 if (opts.refresh)
1790 {
1791 if (!sub->enabled)
1792 ereport(ERROR,
1794 errmsg("ALTER SUBSCRIPTION with refresh is not allowed for disabled subscriptions"),
1795 errhint("Use ALTER SUBSCRIPTION ... SET PUBLICATION ... WITH (refresh = false).")));
1796
1797 /*
1798 * See ALTER_SUBSCRIPTION_REFRESH_PUBLICATION for details
1799 * why this is not allowed.
1800 */
1801 if (sub->twophasestate == LOGICALREP_TWOPHASE_STATE_ENABLED && opts.copy_data)
1802 ereport(ERROR,
1804 errmsg("ALTER SUBSCRIPTION with refresh and copy_data is not allowed when two_phase is enabled"),
1805 errhint("Use ALTER SUBSCRIPTION ... SET PUBLICATION with refresh = false, or with copy_data = false, or use DROP/CREATE SUBSCRIPTION.")));
1806
1807 PreventInTransactionBlock(isTopLevel, "ALTER SUBSCRIPTION with refresh");
1808
1809 /* Make sure refresh sees the new list of publications. */
1810 sub->publications = stmt->publication;
1811
1812 AlterSubscription_refresh(sub, opts.copy_data,
1813 stmt->publication);
1814 }
1815
1816 break;
1817 }
1818
1821 {
1822 List *publist;
1824
1826 parse_subscription_options(pstate, stmt->options,
1828
1829 publist = merge_publications(sub->publications, stmt->publication, isadd, stmt->subname);
1833
1834 update_tuple = true;
1835
1836 /* Refresh if user asked us to. */
1837 if (opts.refresh)
1838 {
1839 /* We only need to validate user specified publications. */
1840 List *validate_publications = (isadd) ? stmt->publication : NULL;
1841
1842 if (!sub->enabled)
1843 ereport(ERROR,
1845 errmsg("ALTER SUBSCRIPTION with refresh is not allowed for disabled subscriptions"),
1846 /* translator: %s is an SQL ALTER command */
1847 errhint("Use %s instead.",
1848 isadd ?
1849 "ALTER SUBSCRIPTION ... ADD PUBLICATION ... WITH (refresh = false)" :
1850 "ALTER SUBSCRIPTION ... DROP PUBLICATION ... WITH (refresh = false)")));
1851
1852 /*
1853 * See ALTER_SUBSCRIPTION_REFRESH_PUBLICATION for details
1854 * why this is not allowed.
1855 */
1856 if (sub->twophasestate == LOGICALREP_TWOPHASE_STATE_ENABLED && opts.copy_data)
1857 ereport(ERROR,
1859 errmsg("ALTER SUBSCRIPTION with refresh and copy_data is not allowed when two_phase is enabled"),
1860 /* translator: %s is an SQL ALTER command */
1861 errhint("Use %s with refresh = false, or with copy_data = false, or use DROP/CREATE SUBSCRIPTION.",
1862 isadd ?
1863 "ALTER SUBSCRIPTION ... ADD PUBLICATION" :
1864 "ALTER SUBSCRIPTION ... DROP PUBLICATION")));
1865
1866 PreventInTransactionBlock(isTopLevel, "ALTER SUBSCRIPTION with refresh");
1867
1868 /* Refresh the new list of publications. */
1869 sub->publications = publist;
1870
1871 AlterSubscription_refresh(sub, opts.copy_data,
1873 }
1874
1875 break;
1876 }
1877
1879 {
1880 if (!sub->enabled)
1881 ereport(ERROR,
1883 errmsg("%s is not allowed for disabled subscriptions",
1884 "ALTER SUBSCRIPTION ... REFRESH PUBLICATION")));
1885
1886 parse_subscription_options(pstate, stmt->options,
1888
1889 /*
1890 * The subscription option "two_phase" requires that
1891 * replication has passed the initial table synchronization
1892 * phase before the two_phase becomes properly enabled.
1893 *
1894 * But, having reached this two-phase commit "enabled" state
1895 * we must not allow any subsequent table initialization to
1896 * occur. So the ALTER SUBSCRIPTION ... REFRESH PUBLICATION is
1897 * disallowed when the user had requested two_phase = on mode.
1898 *
1899 * The exception to this restriction is when copy_data =
1900 * false, because when copy_data is false the tablesync will
1901 * start already in READY state and will exit directly without
1902 * doing anything.
1903 *
1904 * For more details see comments atop worker.c.
1905 */
1906 if (sub->twophasestate == LOGICALREP_TWOPHASE_STATE_ENABLED && opts.copy_data)
1907 ereport(ERROR,
1909 errmsg("ALTER SUBSCRIPTION ... REFRESH PUBLICATION with copy_data is not allowed when two_phase is enabled"),
1910 errhint("Use ALTER SUBSCRIPTION ... REFRESH PUBLICATION with copy_data = false, or use DROP/CREATE SUBSCRIPTION.")));
1911
1912 PreventInTransactionBlock(isTopLevel, "ALTER SUBSCRIPTION ... REFRESH PUBLICATION");
1913
1914 AlterSubscription_refresh(sub, opts.copy_data, NULL);
1915
1916 break;
1917 }
1918
1920 {
1921 if (!sub->enabled)
1922 ereport(ERROR,
1924 errmsg("%s is not allowed for disabled subscriptions",
1925 "ALTER SUBSCRIPTION ... REFRESH SEQUENCES"));
1926
1928
1929 break;
1930 }
1931
1933 {
1934 parse_subscription_options(pstate, stmt->options, SUBOPT_LSN, &opts);
1935
1936 /* ALTER SUBSCRIPTION ... SKIP supports only LSN option */
1937 Assert(IsSet(opts.specified_opts, SUBOPT_LSN));
1938
1939 /*
1940 * If the user sets subskiplsn, we do a sanity check to make
1941 * sure that the specified LSN is a probable value.
1942 */
1943 if (XLogRecPtrIsValid(opts.lsn))
1944 {
1946 char originname[NAMEDATALEN];
1947 XLogRecPtr remote_lsn;
1948
1950 originname, sizeof(originname));
1952 remote_lsn = replorigin_get_progress(originid, false);
1953
1954 /* Check the given LSN is at least a future LSN */
1955 if (XLogRecPtrIsValid(remote_lsn) && opts.lsn < remote_lsn)
1956 ereport(ERROR,
1958 errmsg("skip WAL location (LSN %X/%08X) must be greater than origin LSN %X/%08X",
1959 LSN_FORMAT_ARGS(opts.lsn),
1960 LSN_FORMAT_ARGS(remote_lsn))));
1961 }
1962
1965
1966 update_tuple = true;
1967 break;
1968 }
1969
1970 default:
1971 elog(ERROR, "unrecognized ALTER SUBSCRIPTION kind %d",
1972 stmt->kind);
1973 }
1974
1975 /* Update the catalog if needed. */
1976 if (update_tuple)
1977 {
1979 replaces);
1980
1981 CatalogTupleUpdate(rel, &tup->t_self, tup);
1982
1984 }
1985
1986 /*
1987 * Try to acquire the connection necessary either for modifying the slot
1988 * or for checking if the remote server permits enabling
1989 * retain_dead_tuples.
1990 *
1991 * This has to be at the end because otherwise if there is an error while
1992 * doing the database operations we won't be able to rollback altered
1993 * slot.
1994 */
1996 {
1997 bool must_use_password;
1998 char *err;
2000
2001 /* Load the library providing us libpq calls. */
2002 load_file("libpqwalreceiver", false);
2003
2004 /*
2005 * Try to connect to the publisher, using the new connection string if
2006 * available.
2007 */
2009 wrconn = walrcv_connect(stmt->conninfo ? stmt->conninfo : sub->conninfo,
2011 &err);
2012 if (!wrconn)
2013 ereport(ERROR,
2015 errmsg("subscription \"%s\" could not connect to the publisher: %s",
2016 sub->name, err)));
2017
2018 PG_TRY();
2019 {
2022
2024 retain_dead_tuples, origin, NULL, 0,
2025 sub->name);
2026
2029 update_failover ? &opts.failover : NULL,
2030 update_two_phase ? &opts.twophase : NULL);
2031 }
2032 PG_FINALLY();
2033 {
2035 }
2036 PG_END_TRY();
2037 }
2038
2040
2042
2044
2045 /* Wake up related replication workers to handle this change quickly. */
2047
2048 return myself;
2049}
@ ACLCHECK_NOT_OWNER
Definition acl.h:185
void aclcheck_error(AclResult aclerr, ObjectType objtype, const char *objectname)
Definition aclchk.c:2654
bool object_ownercheck(Oid classid, Oid objectid, Oid roleid)
Definition aclchk.c:4108
void LogicalRepWorkersWakeupAtCommit(Oid subid)
Definition worker.c:6296
void ReplicationOriginNameForLogicalRep(Oid suboid, Oid relid, char *originname, Size szoriginname)
Definition worker.c:644
static Datum values[MAXATTR]
Definition bootstrap.c:147
#define CStringGetTextDatum(s)
Definition builtins.h:98
#define Assert(condition)
Definition c.h:906
uint32 bits32
Definition c.h:588
void load_file(const char *filename, bool restricted)
Definition dfmgr.c:149
int errcode(int sqlerrcode)
Definition elog.c:874
int errmsg(const char *fmt,...)
Definition elog.c:1093
int errhint(const char *fmt,...) pg_attribute_printf(1
#define PG_TRY(...)
Definition elog.h:372
#define WARNING
Definition elog.h:36
#define PG_END_TRY(...)
Definition elog.h:397
#define ERROR
Definition elog.h:39
#define elog(elevel,...)
Definition elog.h:226
#define NOTICE
Definition elog.h:35
#define PG_FINALLY(...)
Definition elog.h:389
#define ereport(elevel,...)
Definition elog.h:150
void err(int eval, const char *fmt,...)
Definition err.c:43
#define DirectFunctionCall1(func, arg1)
Definition fmgr.h:684
Oid MyDatabaseId
Definition globals.c:94
HeapTuple heap_modify_tuple(HeapTuple tuple, TupleDesc tupleDesc, const Datum *replValues, const bool *replIsnull, const bool *doReplace)
Definition heaptuple.c:1210
void heap_freetuple(HeapTuple htup)
Definition heaptuple.c:1435
#define HeapTupleIsValid(tuple)
Definition htup.h:78
static void * GETSTRUCT(const HeapTupleData *tuple)
#define stmt
void CatalogTupleUpdate(Relation heapRel, const ItemPointerData *otid, HeapTuple tup)
Definition indexing.c:313
return true
Definition isn.c:130
List * logicalrep_workers_find(Oid subid, bool only_running, bool acquire_lock)
Definition launcher.c:293
void ApplyLauncherWakeupAtCommit(void)
Definition launcher.c:1184
void LockSharedObject(Oid classid, Oid objid, uint16 objsubid, LOCKMODE lockmode)
Definition lmgr.c:1088
#define AccessExclusiveLock
Definition lockdefs.h:43
#define RowExclusiveLock
Definition lockdefs.h:38
Oid GetUserId(void)
Definition miscinit.c:469
Datum namein(PG_FUNCTION_ARGS)
Definition name.c:48
#define InvokeObjectPostAlterHook(classId, objectId, subId)
#define ObjectAddressSet(addr, class_id, object_id)
ReplOriginId replorigin_by_name(const char *roname, bool missing_ok)
Definition origin.c:231
XLogRecPtr replorigin_get_progress(ReplOriginId node, bool flush)
Definition origin.c:1047
@ ALTER_SUBSCRIPTION_REFRESH_PUBLICATION
@ ALTER_SUBSCRIPTION_ENABLED
@ ALTER_SUBSCRIPTION_DROP_PUBLICATION
@ ALTER_SUBSCRIPTION_SET_PUBLICATION
@ ALTER_SUBSCRIPTION_REFRESH_SEQUENCES
@ ALTER_SUBSCRIPTION_SKIP
@ ALTER_SUBSCRIPTION_OPTIONS
@ ALTER_SUBSCRIPTION_CONNECTION
@ ALTER_SUBSCRIPTION_ADD_PUBLICATION
@ OBJECT_SUBSCRIPTION
static AmcheckOptions opts
Definition pg_amcheck.c:112
#define NAMEDATALEN
static Datum LSNGetDatum(XLogRecPtr X)
Definition pg_lsn.h:31
Subscription * GetSubscription(Oid subid, bool missing_ok)
END_CATALOG_STRUCT typedef FormData_pg_subscription * Form_pg_subscription
int pg_strcasecmp(const char *s1, const char *s2)
static Datum BoolGetDatum(bool X)
Definition postgres.h:112
static Datum ObjectIdGetDatum(Oid X)
Definition postgres.h:262
uint64_t Datum
Definition postgres.h:70
static Datum CStringGetDatum(const char *X)
Definition postgres.h:380
static Datum Int32GetDatum(int32 X)
Definition postgres.h:222
static Datum CharGetDatum(char X)
Definition postgres.h:132
#define InvalidOid
unsigned int Oid
static int fb(int x)
#define RelationGetDescr(relation)
Definition rel.h:540
Definition pg_list.h:54
#define SUBOPT_STREAMING
#define SUBOPT_PASSWORD_REQUIRED
#define SUBOPT_SYNCHRONOUS_COMMIT
#define SUBOPT_ENABLED
static void CheckAlterSubOption(Subscription *sub, const char *option, bool slot_needs_update, bool isTopLevel)
#define SUBOPT_RETAIN_DEAD_TUPLES
#define SUBOPT_ORIGIN
static Datum publicationListToArray(List *publist)
#define SUBOPT_FAILOVER
static void parse_subscription_options(ParseState *pstate, List *stmt_options, bits32 supported_opts, SubOpts *opts)
#define SUBOPT_RUN_AS_OWNER
#define SUBOPT_SLOT_NAME
#define SUBOPT_COPY_DATA
#define SUBOPT_TWOPHASE_COMMIT
static void AlterSubscription_refresh(Subscription *sub, bool copy_data, List *validate_publications)
#define SUBOPT_DISABLE_ON_ERR
void CheckSubDeadTupleRetention(bool check_guc, bool sub_disabled, int elevel_for_sub_disabled, bool retain_dead_tuples, bool retention_active, bool max_retention_set)
static void AlterSubscription_refresh_seq(Subscription *sub)
#define SUBOPT_LSN
#define SUBOPT_MAX_RETENTION_DURATION
static List * merge_publications(List *oldpublist, List *newpublist, bool addpub, const char *subname)
#define SUBOPT_WAL_RECEIVER_TIMEOUT
static void check_publications_origin_tables(WalReceiverConn *wrconn, List *publications, bool copydata, bool retain_dead_tuples, char *origin, Oid *subrel_local_oids, int subrel_count, char *subname)
#define SUBOPT_BINARY
#define IsSet(val, bits)
#define SUBOPT_REFRESH
static void check_pub_dead_tuple_retention(WalReceiverConn *wrconn)
bool superuser(void)
Definition superuser.c:47
#define SearchSysCacheCopy2(cacheId, key1, key2)
Definition syscache.h:93
void table_close(Relation relation, LOCKMODE lockmode)
Definition table.c:126
Relation table_open(Oid relationId, LOCKMODE lockmode)
Definition table.c:40
bool LookupGXactBySubid(Oid subid)
Definition twophase.c:2798
const char * name
static WalReceiverConn * wrconn
Definition walreceiver.c:94
#define walrcv_connect(conninfo, replication, logical, must_use_password, appname, err)
#define walrcv_check_conninfo(conninfo, must_use_password)
#define walrcv_alter_slot(conn, slotname, failover, two_phase)
#define walrcv_disconnect(conn)
void PreventInTransactionBlock(bool isTopLevel, const char *stmtType)
Definition xact.c:3669
#define XLogRecPtrIsValid(r)
Definition xlogdefs.h:29
#define LSN_FORMAT_ARGS(lsn)
Definition xlogdefs.h:47
uint16 ReplOriginId
Definition xlogdefs.h:69
uint64 XLogRecPtr
Definition xlogdefs.h:21

References AccessExclusiveLock, aclcheck_error(), ACLCHECK_NOT_OWNER, ALTER_SUBSCRIPTION_ADD_PUBLICATION, ALTER_SUBSCRIPTION_CONNECTION, ALTER_SUBSCRIPTION_DROP_PUBLICATION, ALTER_SUBSCRIPTION_ENABLED, ALTER_SUBSCRIPTION_OPTIONS, ALTER_SUBSCRIPTION_REFRESH_PUBLICATION, ALTER_SUBSCRIPTION_REFRESH_SEQUENCES, ALTER_SUBSCRIPTION_SET_PUBLICATION, ALTER_SUBSCRIPTION_SKIP, AlterSubscription_refresh(), AlterSubscription_refresh_seq(), ApplyLauncherWakeupAtCommit(), Assert, BoolGetDatum(), CatalogTupleUpdate(), CharGetDatum(), check_pub_dead_tuple_retention(), check_publications_origin_tables(), CheckAlterSubOption(), CheckSubDeadTupleRetention(), Subscription::conninfo, CStringGetDatum(), CStringGetTextDatum, DirectFunctionCall1, elog, Subscription::enabled, ereport, err(), errcode(), errhint(), errmsg(), ERROR, fb(), Form_pg_subscription, GETSTRUCT(), GetSubscription(), GetUserId(), heap_freetuple(), heap_modify_tuple(), HeapTupleIsValid, Int32GetDatum(), InvalidOid, InvokeObjectPostAlterHook, IsSet, load_file(), LockSharedObject(), logicalrep_workers_find(), LogicalRepWorkersWakeupAtCommit(), LookupGXactBySubid(), LSN_FORMAT_ARGS, LSNGetDatum(), Subscription::maxretention, merge_publications(), MyDatabaseId, Subscription::name, NAMEDATALEN, namein(), NOTICE, object_ownercheck(), OBJECT_SUBSCRIPTION, ObjectAddressSet, ObjectIdGetDatum(), opts, Subscription::origin, Subscription::ownersuperuser, parse_subscription_options(), Subscription::passwordrequired, PG_END_TRY, PG_FINALLY, pg_strcasecmp(), PG_TRY, PreventInTransactionBlock(), publicationListToArray(), Subscription::publications, RelationGetDescr, ReplicationOriginNameForLogicalRep(), replorigin_by_name(), replorigin_get_progress(), Subscription::retaindeadtuples, Subscription::retentionactive, RowExclusiveLock, SearchSysCacheCopy2, Subscription::slotname, stmt, SUBOPT_BINARY, SUBOPT_COPY_DATA, SUBOPT_DISABLE_ON_ERR, SUBOPT_ENABLED, SUBOPT_FAILOVER, SUBOPT_LSN, SUBOPT_MAX_RETENTION_DURATION, SUBOPT_ORIGIN, SUBOPT_PASSWORD_REQUIRED, SUBOPT_REFRESH, SUBOPT_RETAIN_DEAD_TUPLES, SUBOPT_RUN_AS_OWNER, SUBOPT_SLOT_NAME, SUBOPT_STREAMING, SUBOPT_SYNCHRONOUS_COMMIT, SUBOPT_TWOPHASE_COMMIT, SUBOPT_WAL_RECEIVER_TIMEOUT, superuser(), table_close(), table_open(), Subscription::twophasestate, values, walrcv_alter_slot, walrcv_check_conninfo, walrcv_connect, walrcv_disconnect, WARNING, wrconn, and XLogRecPtrIsValid.

Referenced by ProcessUtilitySlow().

◆ AlterSubscriptionOwner()

ObjectAddress AlterSubscriptionOwner ( const char name,
Oid  newOwnerId 
)
extern

Definition at line 2459 of file subscriptioncmds.c.

2460{
2461 Oid subid;
2462 HeapTuple tup;
2463 Relation rel;
2464 ObjectAddress address;
2466
2468
2471
2472 if (!HeapTupleIsValid(tup))
2473 ereport(ERROR,
2475 errmsg("subscription \"%s\" does not exist", name)));
2476
2478 subid = form->oid;
2479
2481
2483
2485
2487
2488 return address;
2489}
static void AlterSubscriptionOwner_internal(Relation rel, HeapTuple tup, Oid newOwnerId)

References AlterSubscriptionOwner_internal(), CStringGetDatum(), ereport, errcode(), errmsg(), ERROR, fb(), Form_pg_subscription, GETSTRUCT(), heap_freetuple(), HeapTupleIsValid, MyDatabaseId, name, ObjectAddressSet, ObjectIdGetDatum(), RowExclusiveLock, SearchSysCacheCopy2, table_close(), and table_open().

Referenced by ExecAlterOwnerStmt().

◆ AlterSubscriptionOwner_oid()

void AlterSubscriptionOwner_oid ( Oid  subid,
Oid  newOwnerId 
)
extern

Definition at line 2495 of file subscriptioncmds.c.

2496{
2497 HeapTuple tup;
2498 Relation rel;
2499
2501
2503
2504 if (!HeapTupleIsValid(tup))
2505 ereport(ERROR,
2507 errmsg("subscription with OID %u does not exist", subid)));
2508
2510
2512
2514}
#define SearchSysCacheCopy1(cacheId, key1)
Definition syscache.h:91

References AlterSubscriptionOwner_internal(), ereport, errcode(), errmsg(), ERROR, fb(), heap_freetuple(), HeapTupleIsValid, ObjectIdGetDatum(), RowExclusiveLock, SearchSysCacheCopy1, table_close(), and table_open().

Referenced by shdepReassignOwned_Owner().

◆ CheckSubDeadTupleRetention()

void CheckSubDeadTupleRetention ( bool  check_guc,
bool  sub_disabled,
int  elevel_for_sub_disabled,
bool  retain_dead_tuples,
bool  retention_active,
bool  max_retention_set 
)
extern

Definition at line 2856 of file subscriptioncmds.c.

2860{
2863
2865 {
2867 ereport(ERROR,
2869 errmsg("\"wal_level\" is insufficient to create the replication slot required by retain_dead_tuples"),
2870 errhint("\"wal_level\" must be set to \"replica\" or \"logical\" at server start."));
2871
2875 errmsg("commit timestamp and origin data required for detecting conflicts won't be retained"),
2876 errhint("Consider setting \"%s\" to true.",
2877 "track_commit_timestamp"));
2878
2882 errmsg("deleted rows to detect conflicts would not be removed until the subscription is enabled"),
2884 ? errhint("Consider setting %s to false.",
2885 "retain_dead_tuples") : 0);
2886 }
2887 else if (max_retention_set)
2888 {
2891 errmsg("max_retention_duration is ineffective when retain_dead_tuples is disabled"));
2892 }
2893}
bool track_commit_timestamp
Definition commit_ts.c:109
int wal_level
Definition xlog.c:134
@ WAL_LEVEL_REPLICA
Definition xlog.h:76

References Assert, ereport, errcode(), errhint(), errmsg(), ERROR, fb(), NOTICE, track_commit_timestamp, wal_level, WAL_LEVEL_REPLICA, and WARNING.

Referenced by AlterSubscription(), CreateSubscription(), and DisableSubscriptionAndExit().

◆ CreateSubscription()

ObjectAddress CreateSubscription ( ParseState pstate,
CreateSubscriptionStmt stmt,
bool  isTopLevel 
)
extern

Definition at line 612 of file subscriptioncmds.c.

614{
615 Relation rel;
617 Oid subid;
618 bool nulls[Natts_pg_subscription];
620 Oid owner = GetUserId();
622 char *conninfo;
624 List *publications;
626 SubOpts opts = {0};
628
629 /*
630 * Parse and check options.
631 *
632 * Connection and publication should not be specified here.
633 */
644
645 /*
646 * Since creating a replication slot is not transactional, rolling back
647 * the transaction leaves the created replication slot. So we cannot run
648 * CREATE SUBSCRIPTION inside a transaction block if creating a
649 * replication slot.
650 */
651 if (opts.create_slot)
652 PreventInTransactionBlock(isTopLevel, "CREATE SUBSCRIPTION ... WITH (create_slot = true)");
653
654 /*
655 * We don't want to allow unprivileged users to be able to trigger
656 * attempts to access arbitrary network destinations, so require the user
657 * to have been specifically authorized to create subscriptions.
658 */
662 errmsg("permission denied to create subscription"),
663 errdetail("Only roles with privileges of the \"%s\" role may create subscriptions.",
664 "pg_create_subscription")));
665
666 /*
667 * Since a subscription is a database object, we also check for CREATE
668 * permission on the database.
669 */
671 owner, ACL_CREATE);
672 if (aclresult != ACLCHECK_OK)
675
676 /*
677 * Non-superusers are required to set a password for authentication, and
678 * that password must be used by the target server, but the superuser can
679 * exempt a subscription from this requirement.
680 */
681 if (!opts.passwordrequired && !superuser_arg(owner))
684 errmsg("password_required=false is superuser-only"),
685 errhint("Subscriptions with the password_required option set to false may only be created or modified by the superuser.")));
686
687 /*
688 * If built with appropriate switch, whine when regression-testing
689 * conventions for subscription names are violated.
690 */
691#ifdef ENFORCE_REGRESSION_TEST_NAME_RESTRICTIONS
692 if (strncmp(stmt->subname, "regress_", 8) != 0)
693 elog(WARNING, "subscriptions created by regression test cases should have names starting with \"regress_\"");
694#endif
695
697
698 /* Check if name is used */
701 if (OidIsValid(subid))
702 {
705 errmsg("subscription \"%s\" already exists",
706 stmt->subname)));
707 }
708
709 /*
710 * Ensure that system configuration parameters are set appropriately to
711 * support retain_dead_tuples and max_retention_duration.
712 */
714 opts.retaindeadtuples, opts.retaindeadtuples,
715 (opts.maxretention > 0));
716
717 if (!IsSet(opts.specified_opts, SUBOPT_SLOT_NAME) &&
718 opts.slot_name == NULL)
719 opts.slot_name = stmt->subname;
720
721 /* The default for synchronous_commit of subscriptions is off. */
722 if (opts.synchronous_commit == NULL)
723 opts.synchronous_commit = "off";
724
725 /*
726 * The default for wal_receiver_timeout of subscriptions is -1, which
727 * means the value is inherited from the server configuration, command
728 * line, or role/database settings.
729 */
730 if (opts.wal_receiver_timeout == NULL)
731 opts.wal_receiver_timeout = "-1";
732
733 conninfo = stmt->conninfo;
734 publications = stmt->publication;
735
736 /* Load the library providing us libpq calls. */
737 load_file("libpqwalreceiver", false);
738
739 /* Check the connection info string. */
740 walrcv_check_conninfo(conninfo, opts.passwordrequired && !superuser());
741
742 /* Everything ok, form a new tuple. */
743 memset(values, 0, sizeof(values));
744 memset(nulls, false, sizeof(nulls));
745
758 CharGetDatum(opts.twophase ?
766 BoolGetDatum(opts.retaindeadtuples);
768 Int32GetDatum(opts.maxretention);
770 Int32GetDatum(opts.retaindeadtuples);
772 CStringGetTextDatum(conninfo);
773 if (opts.slot_name)
776 else
777 nulls[Anum_pg_subscription_subslotname - 1] = true;
779 CStringGetTextDatum(opts.synchronous_commit);
781 CStringGetTextDatum(opts.wal_receiver_timeout);
783 publicationListToArray(publications);
786
788
789 /* Insert tuple into catalog. */
792
794
795 /*
796 * A replication origin is currently created for all subscriptions,
797 * including those that only contain sequences or are otherwise empty.
798 *
799 * XXX: While this is technically unnecessary, optimizing it would require
800 * additional logic to skip origin creation during DDL operations and
801 * apply workers initialization, and to handle origin creation dynamically
802 * when tables are added to the subscription. It is not clear whether
803 * preventing creation of origins is worth additional complexity.
804 */
807
808 /*
809 * Connect to remote side to execute requested commands and fetch table
810 * and sequence info.
811 */
812 if (opts.connect)
813 {
814 char *err;
817
818 /* Try to connect to the publisher. */
819 must_use_password = !superuser_arg(owner) && opts.passwordrequired;
820 wrconn = walrcv_connect(conninfo, true, true, must_use_password,
821 stmt->subname, &err);
822 if (!wrconn)
825 errmsg("subscription \"%s\" could not connect to the publisher: %s",
826 stmt->subname, err)));
827
828 PG_TRY();
829 {
830 bool has_tables = false;
831 List *pubrels;
832 char relation_state;
833
834 check_publications(wrconn, publications);
836 opts.copy_data,
837 opts.retaindeadtuples, opts.origin,
838 NULL, 0, stmt->subname);
840 opts.copy_data, opts.origin,
841 NULL, 0, stmt->subname);
842
843 if (opts.retaindeadtuples)
845
846 /*
847 * Set sync state based on if we were asked to do data copy or
848 * not.
849 */
851
852 /*
853 * Build local relation status info. Relations are for both tables
854 * and sequences from the publisher.
855 */
856 pubrels = fetch_relation_list(wrconn, publications);
857
859 {
860 Oid relid;
861 char relkind;
862 RangeVar *rv = pubrelinfo->rv;
863
864 relid = RangeVarGetRelid(rv, AccessShareLock, false);
865 relkind = get_rel_relkind(relid);
866
867 /* Check for supported relkind. */
868 CheckSubscriptionRelkind(relkind, pubrelinfo->relkind,
869 rv->schemaname, rv->relname);
870 has_tables |= (relkind != RELKIND_SEQUENCE);
872 InvalidXLogRecPtr, true);
873 }
874
875 /*
876 * If requested, create permanent slot for the subscription. We
877 * won't use the initial snapshot for anything, so no need to
878 * export it.
879 *
880 * XXX: Similar to origins, it is not clear whether preventing the
881 * slot creation for empty and sequence-only subscriptions is
882 * worth additional complexity.
883 */
884 if (opts.create_slot)
885 {
886 bool twophase_enabled = false;
887
888 Assert(opts.slot_name);
889
890 /*
891 * Even if two_phase is set, don't create the slot with
892 * two-phase enabled. Will enable it once all the tables are
893 * synced and ready. This avoids race-conditions like prepared
894 * transactions being skipped due to changes not being applied
895 * due to checks in should_apply_changes_for_rel() when
896 * tablesync for the corresponding tables are in progress. See
897 * comments atop worker.c.
898 *
899 * Note that if tables were specified but copy_data is false
900 * then it is safe to enable two_phase up-front because those
901 * tables are already initially in READY state. When the
902 * subscription has no tables, we leave the twophase state as
903 * PENDING, to allow ALTER SUBSCRIPTION ... REFRESH
904 * PUBLICATION to work.
905 */
906 if (opts.twophase && !opts.copy_data && has_tables)
907 twophase_enabled = true;
908
910 opts.failover, CRS_NOEXPORT_SNAPSHOT, NULL);
911
914
916 (errmsg("created replication slot \"%s\" on publisher",
917 opts.slot_name)));
918 }
919 }
920 PG_FINALLY();
921 {
923 }
924 PG_END_TRY();
925 }
926 else
928 (errmsg("subscription was created, but is not connected"),
929 errhint("To initiate replication, you must manually create the replication slot, enable the subscription, and alter the subscription to refresh publications.")));
930
932
934
935 /*
936 * Notify the launcher to start the apply worker if the subscription is
937 * enabled, or to create the conflict detection slot if retain_dead_tuples
938 * is enabled.
939 *
940 * Creating the conflict detection slot is essential even when the
941 * subscription is not enabled. This ensures that dead tuples are
942 * retained, which is necessary for accurately identifying the type of
943 * conflict during replication.
944 */
945 if (opts.enabled || opts.retaindeadtuples)
947
949
951
952 return myself;
953}
bool has_privs_of_role(Oid member, Oid role)
Definition acl.c:5286
AclResult
Definition acl.h:182
@ ACLCHECK_OK
Definition acl.h:183
AclResult object_aclcheck(Oid classid, Oid objectid, Oid roleid, AclMode mode)
Definition aclchk.c:3854
#define OidIsValid(objectId)
Definition c.h:821
Oid GetNewOidWithIndex(Relation relation, Oid indexId, AttrNumber oidcolumn)
Definition catalog.c:448
int errdetail(const char *fmt,...) pg_attribute_printf(1
void CheckSubscriptionRelkind(char localrelkind, char remoterelkind, const char *nspname, const char *relname)
HeapTuple heap_form_tuple(TupleDesc tupleDescriptor, const Datum *values, const bool *isnull)
Definition heaptuple.c:1117
void CatalogTupleInsert(Relation heapRel, HeapTuple tup)
Definition indexing.c:233
#define AccessShareLock
Definition lockdefs.h:36
char * get_database_name(Oid dbid)
Definition lsyscache.c:1242
char get_rel_relkind(Oid relid)
Definition lsyscache.c:2153
#define RangeVarGetRelid(relation, lockmode, missing_ok)
Definition namespace.h:98
#define InvokeObjectPostCreateHook(classId, objectId, subId)
ReplOriginId replorigin_create(const char *roname)
Definition origin.c:262
@ OBJECT_DATABASE
#define ACL_CREATE
Definition parsenodes.h:85
#define foreach_ptr(type, var, lst)
Definition pg_list.h:469
void recordDependencyOnOwner(Oid classId, Oid objectId, Oid owner)
void AddSubscriptionRelState(Oid subid, Oid relid, char state, XLogRecPtr sublsn, bool retain_lock)
void pgstat_create_subscription(Oid subid)
#define ERRCODE_DUPLICATE_OBJECT
Definition streamutil.c:30
char * relname
Definition primnodes.h:84
char * schemaname
Definition primnodes.h:81
#define SUBOPT_CREATE_SLOT
static void check_publications_origin_sequences(WalReceiverConn *wrconn, List *publications, bool copydata, char *origin, Oid *subrel_local_oids, int subrel_count, char *subname)
static void check_publications(WalReceiverConn *wrconn, List *publications)
static List * fetch_relation_list(WalReceiverConn *wrconn, List *publications)
#define SUBOPT_CONNECT
bool superuser_arg(Oid roleid)
Definition superuser.c:57
#define GetSysCacheOid2(cacheId, oidcol, key1, key2)
Definition syscache.h:111
void UpdateTwoPhaseState(Oid suboid, char new_state)
Definition tablesync.c:1647
#define walrcv_create_slot(conn, slotname, temporary, two_phase, failover, snapshot_action, lsn)
@ CRS_NOEXPORT_SNAPSHOT
Definition walsender.h:23
#define InvalidXLogRecPtr
Definition xlogdefs.h:28

References AccessShareLock, ACL_CREATE, aclcheck_error(), ACLCHECK_OK, AddSubscriptionRelState(), ApplyLauncherWakeupAtCommit(), Assert, BoolGetDatum(), CatalogTupleInsert(), CharGetDatum(), check_pub_dead_tuple_retention(), check_publications(), check_publications_origin_sequences(), check_publications_origin_tables(), CheckSubDeadTupleRetention(), CheckSubscriptionRelkind(), CRS_NOEXPORT_SNAPSHOT, CStringGetDatum(), CStringGetTextDatum, DirectFunctionCall1, elog, ereport, err(), errcode(), ERRCODE_DUPLICATE_OBJECT, errdetail(), errhint(), errmsg(), ERROR, fb(), fetch_relation_list(), foreach_ptr, get_database_name(), get_rel_relkind(), GetNewOidWithIndex(), GetSysCacheOid2, GetUserId(), has_privs_of_role(), heap_form_tuple(), heap_freetuple(), Int32GetDatum(), InvalidOid, InvalidXLogRecPtr, InvokeObjectPostCreateHook, IsSet, load_file(), LSNGetDatum(), MyDatabaseId, NAMEDATALEN, namein(), NOTICE, object_aclcheck(), OBJECT_DATABASE, ObjectAddressSet, ObjectIdGetDatum(), OidIsValid, opts, parse_subscription_options(), PG_END_TRY, PG_FINALLY, PG_TRY, pgstat_create_subscription(), PreventInTransactionBlock(), publicationListToArray(), RangeVarGetRelid, recordDependencyOnOwner(), RelationGetDescr, RangeVar::relname, ReplicationOriginNameForLogicalRep(), replorigin_create(), RowExclusiveLock, RangeVar::schemaname, stmt, SUBOPT_BINARY, SUBOPT_CONNECT, SUBOPT_COPY_DATA, SUBOPT_CREATE_SLOT, SUBOPT_DISABLE_ON_ERR, SUBOPT_ENABLED, SUBOPT_FAILOVER, SUBOPT_MAX_RETENTION_DURATION, SUBOPT_ORIGIN, SUBOPT_PASSWORD_REQUIRED, SUBOPT_RETAIN_DEAD_TUPLES, SUBOPT_RUN_AS_OWNER, SUBOPT_SLOT_NAME, SUBOPT_STREAMING, SUBOPT_SYNCHRONOUS_COMMIT, SUBOPT_TWOPHASE_COMMIT, SUBOPT_WAL_RECEIVER_TIMEOUT, superuser(), superuser_arg(), table_close(), table_open(), UpdateTwoPhaseState(), values, walrcv_check_conninfo, walrcv_connect, walrcv_create_slot, walrcv_disconnect, WARNING, and wrconn.

Referenced by ProcessUtilitySlow().

◆ defGetStreamingMode()

char defGetStreamingMode ( DefElem def)
extern

Definition at line 3187 of file subscriptioncmds.c.

3188{
3189 /*
3190 * If no parameter value given, assume "true" is meant.
3191 */
3192 if (!def->arg)
3193 return LOGICALREP_STREAM_ON;
3194
3195 /*
3196 * Allow 0, 1, "false", "true", "off", "on" or "parallel".
3197 */
3198 switch (nodeTag(def->arg))
3199 {
3200 case T_Integer:
3201 switch (intVal(def->arg))
3202 {
3203 case 0:
3204 return LOGICALREP_STREAM_OFF;
3205 case 1:
3206 return LOGICALREP_STREAM_ON;
3207 default:
3208 /* otherwise, error out below */
3209 break;
3210 }
3211 break;
3212 default:
3213 {
3214 char *sval = defGetString(def);
3215
3216 /*
3217 * The set of strings accepted here should match up with the
3218 * grammar's opt_boolean_or_string production.
3219 */
3220 if (pg_strcasecmp(sval, "false") == 0 ||
3221 pg_strcasecmp(sval, "off") == 0)
3222 return LOGICALREP_STREAM_OFF;
3223 if (pg_strcasecmp(sval, "true") == 0 ||
3224 pg_strcasecmp(sval, "on") == 0)
3225 return LOGICALREP_STREAM_ON;
3226 if (pg_strcasecmp(sval, "parallel") == 0)
3228 }
3229 break;
3230 }
3231
3232 ereport(ERROR,
3234 errmsg("%s requires a Boolean value or \"parallel\"",
3235 def->defname)));
3236 return LOGICALREP_STREAM_OFF; /* keep compiler quiet */
3237}
char * defGetString(DefElem *def)
Definition define.c:34
#define nodeTag(nodeptr)
Definition nodes.h:139
char * defname
Definition parsenodes.h:844
Node * arg
Definition parsenodes.h:845
#define intVal(v)
Definition value.h:79

References DefElem::arg, defGetString(), DefElem::defname, ereport, errcode(), errmsg(), ERROR, fb(), intVal, nodeTag, and pg_strcasecmp().

Referenced by parse_output_parameters(), and parse_subscription_options().

◆ DropSubscription()

void DropSubscription ( DropSubscriptionStmt stmt,
bool  isTopLevel 
)
extern

Definition at line 2055 of file subscriptioncmds.c.

2056{
2057 Relation rel;
2059 HeapTuple tup;
2060 Oid subid;
2061 Oid subowner;
2062 Datum datum;
2063 bool isnull;
2064 char *subname;
2065 char *conninfo;
2066 char *slotname;
2068 ListCell *lc;
2069 char originname[NAMEDATALEN];
2070 char *err = NULL;
2073 List *rstates;
2074 bool must_use_password;
2075
2076 /*
2077 * The launcher may concurrently start a new worker for this subscription.
2078 * During initialization, the worker checks for subscription validity and
2079 * exits if the subscription has already been dropped. See
2080 * InitializeLogRepWorker.
2081 */
2083
2085 CStringGetDatum(stmt->subname));
2086
2087 if (!HeapTupleIsValid(tup))
2088 {
2089 table_close(rel, NoLock);
2090
2091 if (!stmt->missing_ok)
2092 ereport(ERROR,
2094 errmsg("subscription \"%s\" does not exist",
2095 stmt->subname)));
2096 else
2098 (errmsg("subscription \"%s\" does not exist, skipping",
2099 stmt->subname)));
2100
2101 return;
2102 }
2103
2105 subid = form->oid;
2106 subowner = form->subowner;
2107 must_use_password = !superuser_arg(subowner) && form->subpasswordrequired;
2108
2109 /* must be owner */
2112 stmt->subname);
2113
2114 /* DROP hook for the subscription being removed */
2116
2117 /*
2118 * Lock the subscription so nobody else can do anything with it (including
2119 * the replication workers).
2120 */
2122
2123 /* Get subname */
2126 subname = pstrdup(NameStr(*DatumGetName(datum)));
2127
2128 /* Get conninfo */
2131 conninfo = TextDatumGetCString(datum);
2132
2133 /* Get slotname */
2136 if (!isnull)
2137 slotname = pstrdup(NameStr(*DatumGetName(datum)));
2138 else
2139 slotname = NULL;
2140
2141 /*
2142 * Since dropping a replication slot is not transactional, the replication
2143 * slot stays dropped even if the transaction rolls back. So we cannot
2144 * run DROP SUBSCRIPTION inside a transaction block if dropping the
2145 * replication slot. Also, in this case, we report a message for dropping
2146 * the subscription to the cumulative stats system.
2147 *
2148 * XXX The command name should really be something like "DROP SUBSCRIPTION
2149 * of a subscription that is associated with a replication slot", but we
2150 * don't have the proper facilities for that.
2151 */
2152 if (slotname)
2153 PreventInTransactionBlock(isTopLevel, "DROP SUBSCRIPTION");
2154
2157
2158 /* Remove the tuple from catalog. */
2159 CatalogTupleDelete(rel, &tup->t_self);
2160
2162
2163 /*
2164 * Stop all the subscription workers immediately.
2165 *
2166 * This is necessary if we are dropping the replication slot, so that the
2167 * slot becomes accessible.
2168 *
2169 * It is also necessary if the subscription is disabled and was disabled
2170 * in the same transaction. Then the workers haven't seen the disabling
2171 * yet and will still be running, leading to hangs later when we want to
2172 * drop the replication origin. If the subscription was disabled before
2173 * this transaction, then there shouldn't be any workers left, so this
2174 * won't make a difference.
2175 *
2176 * New workers won't be started because we hold an exclusive lock on the
2177 * subscription till the end of the transaction.
2178 */
2179 subworkers = logicalrep_workers_find(subid, false, true);
2180 foreach(lc, subworkers)
2181 {
2183
2185 }
2187
2188 /*
2189 * Remove the no-longer-useful entry in the launcher's table of apply
2190 * worker start times.
2191 *
2192 * If this transaction rolls back, the launcher might restart a failed
2193 * apply worker before wal_retrieve_retry_interval milliseconds have
2194 * elapsed, but that's pretty harmless.
2195 */
2197
2198 /*
2199 * Cleanup of tablesync replication origins.
2200 *
2201 * Any READY-state relations would already have dealt with clean-ups.
2202 *
2203 * Note that the state can't change because we have already stopped both
2204 * the apply and tablesync workers and they can't restart because of
2205 * exclusive lock on the subscription.
2206 */
2207 rstates = GetSubscriptionRelations(subid, true, false, true);
2208 foreach(lc, rstates)
2209 {
2211 Oid relid = rstate->relid;
2212
2213 /* Only cleanup resources of tablesync workers */
2214 if (!OidIsValid(relid))
2215 continue;
2216
2217 /*
2218 * Drop the tablesync's origin tracking if exists.
2219 *
2220 * It is possible that the origin is not yet created for tablesync
2221 * worker so passing missing_ok = true. This can happen for the states
2222 * before SUBREL_STATE_DATASYNC.
2223 */
2225 sizeof(originname));
2226 replorigin_drop_by_name(originname, true, false);
2227 }
2228
2229 /* Clean up dependencies */
2231
2232 /* Remove any associated relation synchronization states. */
2234
2235 /* Remove the origin tracking if exists. */
2237 replorigin_drop_by_name(originname, true, false);
2238
2239 /*
2240 * Tell the cumulative stats system that the subscription is getting
2241 * dropped.
2242 */
2244
2245 /*
2246 * If there is no slot associated with the subscription, we can finish
2247 * here.
2248 */
2249 if (!slotname && rstates == NIL)
2250 {
2251 table_close(rel, NoLock);
2252 return;
2253 }
2254
2255 /*
2256 * Try to acquire the connection necessary for dropping slots.
2257 *
2258 * Note: If the slotname is NONE/NULL then we allow the command to finish
2259 * and users need to manually cleanup the apply and tablesync worker slots
2260 * later.
2261 *
2262 * This has to be at the end because otherwise if there is an error while
2263 * doing the database operations we won't be able to rollback dropped
2264 * slot.
2265 */
2266 load_file("libpqwalreceiver", false);
2267
2268 wrconn = walrcv_connect(conninfo, true, true, must_use_password,
2269 subname, &err);
2270 if (wrconn == NULL)
2271 {
2272 if (!slotname)
2273 {
2274 /* be tidy */
2276 table_close(rel, NoLock);
2277 return;
2278 }
2279 else
2280 {
2281 ReportSlotConnectionError(rstates, subid, slotname, err);
2282 }
2283 }
2284
2285 PG_TRY();
2286 {
2287 foreach(lc, rstates)
2288 {
2290 Oid relid = rstate->relid;
2291
2292 /* Only cleanup resources of tablesync workers */
2293 if (!OidIsValid(relid))
2294 continue;
2295
2296 /*
2297 * Drop the tablesync slots associated with removed tables.
2298 *
2299 * For SYNCDONE/READY states, the tablesync slot is known to have
2300 * already been dropped by the tablesync worker.
2301 *
2302 * For other states, there is no certainty, maybe the slot does
2303 * not exist yet. Also, if we fail after removing some of the
2304 * slots, next time, it will again try to drop already dropped
2305 * slots and fail. For these reasons, we allow missing_ok = true
2306 * for the drop.
2307 */
2308 if (rstate->state != SUBREL_STATE_SYNCDONE)
2309 {
2310 char syncslotname[NAMEDATALEN] = {0};
2311
2313 sizeof(syncslotname));
2315 }
2316 }
2317
2319
2320 /*
2321 * If there is a slot associated with the subscription, then drop the
2322 * replication slot at the publisher.
2323 */
2324 if (slotname)
2325 ReplicationSlotDropAtPubNode(wrconn, slotname, false);
2326 }
2327 PG_FINALLY();
2328 {
2330 }
2331 PG_END_TRY();
2332
2333 table_close(rel, NoLock);
2334}
#define TextDatumGetCString(d)
Definition builtins.h:99
#define NameStr(name)
Definition c.h:798
void EventTriggerSQLDropAddObject(const ObjectAddress *object, bool original, bool normal)
void CatalogTupleDelete(Relation heapRel, const ItemPointerData *tid)
Definition indexing.c:365
void logicalrep_worker_stop(LogicalRepWorkerType wtype, Oid subid, Oid relid)
Definition launcher.c:652
void ApplyLauncherForgetWorkerStartTime(Oid subid)
Definition launcher.c:1154
void list_free(List *list)
Definition list.c:1546
#define NoLock
Definition lockdefs.h:34
char * pstrdup(const char *in)
Definition mcxt.c:1781
#define InvokeObjectDropHook(classId, objectId, subId)
void replorigin_drop_by_name(const char *name, bool missing_ok, bool nowait)
Definition origin.c:447
#define lfirst(lc)
Definition pg_list.h:172
#define NIL
Definition pg_list.h:68
void deleteSharedDependencyRecordsFor(Oid classId, Oid objectId, int32 objectSubId)
void RemoveSubscriptionRel(Oid subid, Oid relid)
List * GetSubscriptionRelations(Oid subid, bool tables, bool sequences, bool not_ready)
NameData subname
void pgstat_drop_subscription(Oid subid)
static Name DatumGetName(Datum X)
Definition postgres.h:390
LogicalRepWorkerType type
static void ReportSlotConnectionError(List *rstates, Oid subid, char *slotname, char *err)
void ReplicationSlotDropAtPubNode(WalReceiverConn *wrconn, char *slotname, bool missing_ok)
void ReleaseSysCache(HeapTuple tuple)
Definition syscache.c:264
HeapTuple SearchSysCache2(SysCacheIdentifier cacheId, Datum key1, Datum key2)
Definition syscache.c:230
Datum SysCacheGetAttrNotNull(SysCacheIdentifier cacheId, HeapTuple tup, AttrNumber attributeNumber)
Definition syscache.c:625
Datum SysCacheGetAttr(SysCacheIdentifier cacheId, HeapTuple tup, AttrNumber attributeNumber, bool *isNull)
Definition syscache.c:595
void ReplicationSlotNameForTablesync(Oid suboid, Oid relid, char *syncslotname, Size szslot)
Definition tablesync.c:1202

References AccessExclusiveLock, aclcheck_error(), ACLCHECK_NOT_OWNER, ApplyLauncherForgetWorkerStartTime(), CatalogTupleDelete(), CStringGetDatum(), DatumGetName(), deleteSharedDependencyRecordsFor(), ereport, err(), errcode(), errmsg(), ERROR, EventTriggerSQLDropAddObject(), fb(), Form_pg_subscription, GETSTRUCT(), GetSubscriptionRelations(), GetUserId(), HeapTupleIsValid, InvalidOid, InvokeObjectDropHook, lfirst, list_free(), load_file(), LockSharedObject(), logicalrep_worker_stop(), logicalrep_workers_find(), MyDatabaseId, NAMEDATALEN, NameStr, NIL, NoLock, NOTICE, object_ownercheck(), OBJECT_SUBSCRIPTION, ObjectAddressSet, ObjectIdGetDatum(), OidIsValid, PG_END_TRY, PG_FINALLY, PG_TRY, pgstat_drop_subscription(), PreventInTransactionBlock(), pstrdup(), ReleaseSysCache(), SubscriptionRelState::relid, LogicalRepWorker::relid, RemoveSubscriptionRel(), ReplicationOriginNameForLogicalRep(), ReplicationSlotDropAtPubNode(), ReplicationSlotNameForTablesync(), replorigin_drop_by_name(), ReportSlotConnectionError(), RowExclusiveLock, SearchSysCache2(), SubscriptionRelState::state, stmt, LogicalRepWorker::subid, subname, superuser_arg(), SysCacheGetAttr(), SysCacheGetAttrNotNull(), table_close(), table_open(), TextDatumGetCString, LogicalRepWorker::type, walrcv_connect, walrcv_disconnect, and wrconn.

Referenced by ProcessUtilitySlow().