We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1278c33 commit 1bbfc80Copy full SHA for 1bbfc80
1 file changed
pkg/api/v1/subscription_types.go
@@ -52,8 +52,11 @@ type SubscriptionSpec struct {
52
// +kubebuilder:validation:XValidation:rule="self == oldSelf",message="dbname is immutable"
53
DBName string `json:"dbname"`
54
55
- // Subscription parameters part of the `WITH` clause as expected by
56
- // PostgreSQL `CREATE SUBSCRIPTION` command
+ // Subscription parameters included in the `WITH` clause of the PostgreSQL
+ // `CREATE SUBSCRIPTION` command. Most parameters cannot be changed
57
+ // after the subscription is created and will be ignored if modified
58
+ // later, except for a limited set documented at:
59
+ // https://www.postgresql.org/docs/current/sql-altersubscription.html#SQL-ALTERSUBSCRIPTION-PARAMS-SET
60
// +optional
61
Parameters map[string]string `json:"parameters,omitempty"`
62
0 commit comments