ExecutorTx is an executor which is a transaction. In addition to standard Executor operations, it may be committed or rolled back. API is not stable. DO NOT IMPLEMENT.
| 300 | // |
| 301 | // API is not stable. DO NOT IMPLEMENT. |
| 302 | type ExecutorTx interface { |
| 303 | Executor |
| 304 | |
| 305 | // Commit commits the transaction. |
| 306 | // |
| 307 | // API is not stable. DO NOT USE. |
| 308 | Commit(ctx context.Context) error |
| 309 | |
| 310 | // Rollback rolls back the transaction. |
| 311 | // |
| 312 | // API is not stable. DO NOT USE. |
| 313 | Rollback(ctx context.Context) error |
| 314 | } |
| 315 | |
| 316 | type GetListenenerParams struct { |
| 317 | Schema string |
no outgoing calls
no test coverage detected
searching dependent graphs…