WhereCommand - Part of Command that represent Where statement with expression that will qualify values from Select Example: WHERE column1 NOT 'goodbye' OR column2 EQUAL 3;
| 323 | // Example: |
| 324 | // WHERE column1 NOT 'goodbye' OR column2 EQUAL 3; |
| 325 | type WhereCommand struct { |
| 326 | Token token.Token |
| 327 | Expression Expression |
| 328 | } |
| 329 | |
| 330 | func (ls WhereCommand) CommandNode() {} |
| 331 | func (ls WhereCommand) TokenLiteral() string { return ls.Token.Literal } |
nothing calls this directly
no outgoing calls
no test coverage detected