Query holds the query string and the query parser.
| 23 | |
| 24 | // Query holds the query string and the query parser. |
| 25 | type Query struct { |
| 26 | str string |
| 27 | parser *QueryParser |
| 28 | } |
| 29 | |
| 30 | // Condition represents a single condition within a query and consists of composite key |
| 31 | // (e.g. "tx.gas"), operator (e.g. "=") and operand (e.g. "7"). |
nothing calls this directly
no outgoing calls
no test coverage detected