Storage represent storage statement.
| 29 | |
| 30 | // Storage represent storage statement. |
| 31 | type Storage struct { |
| 32 | Type StorageOpType |
| 33 | Value string |
| 34 | } |
| 35 | |
| 36 | // StatementType returns storage query type. |
| 37 | func (q *Storage) StatementType() StatementType { |
nothing calls this directly
no outgoing calls
no test coverage detected