TransactionModes holds the transaction modes for a transaction.
| 94 | |
| 95 | // TransactionModes holds the transaction modes for a transaction. |
| 96 | type TransactionModes struct { |
| 97 | Isolation IsolationLevel |
| 98 | UserPriority UserPriority |
| 99 | ReadWriteMode ReadWriteMode |
| 100 | AsOf AsOfClause |
| 101 | } |
| 102 | |
| 103 | // Format implements the NodeFormatter interface. |
| 104 | func (node *TransactionModes) Format(ctx *FmtCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected