(ctx *sql.Context, enabled bool)
| 114 | } |
| 115 | |
| 116 | func UpdateAllSubscriptionStatus(ctx *sql.Context, enabled bool) error { |
| 117 | _, err := adapter.ExecCatalogInTxn(ctx, catalog.InternalTables.PgSubscription.UpdateAllStmt(statusValueColumns), enabled) |
| 118 | return err |
| 119 | } |
| 120 | |
| 121 | func DeleteSubscription(ctx *sql.Context, name string) error { |
| 122 | _, err := adapter.ExecCatalogInTxn(ctx, catalog.InternalTables.PgSubscription.DeleteStmt(), name) |
no test coverage detected