(ctx *sql.Context, name string)
| 119 | } |
| 120 | |
| 121 | func DeleteSubscription(ctx *sql.Context, name string) error { |
| 122 | _, err := adapter.ExecCatalogInTxn(ctx, catalog.InternalTables.PgSubscription.DeleteStmt(), name) |
| 123 | return err |
| 124 | } |
| 125 | |
| 126 | func UpdateSubscriptionLsn(ctx *sql.Context, lsn, name string) error { |
| 127 | _, err := adapter.ExecCatalogInTxn(ctx, catalog.InternalTables.PgSubscription.UpdateStmt(keyColumns, lsnValueColumns), lsn, name) |
no test coverage detected