public interface ChainedCommonCreateSlotBuilder<T extends ChainedCommonCreateSlotBuilder<T>>
Modifier and Type | Method and Description |
---|---|
ReplicationSlotInfo |
make()
Create slot with specified parameters in database.
|
T |
withSlotName(String slotName)
Replication slots provide an automated way to ensure that the master does not remove WAL
segments until they have been received by all standbys, and that the master does not remove
rows which could cause a recovery conflict even when the standby is disconnected.
|
T |
withTemporaryOption()
Temporary slots are not saved to disk and are automatically dropped on error or when
the session has finished.
|
T withSlotName(String slotName)
slotName
- not null unique replication slot name for create.T withTemporaryOption() throws SQLFeatureNotSupportedException
Temporary slots are not saved to disk and are automatically dropped on error or when the session has finished.
This feature is only supported by PostgreSQL versions >= 10.
SQLFeatureNotSupportedException
- thrown if PostgreSQL version is less than 10.ReplicationSlotInfo make() throws SQLException
SQLException
- on errorCopyright © 1997-2020 PostgreSQL Global Development Group. All Rights Reserved.