()
| 147 | } |
| 148 | |
| 149 | func (parser *Parser) skipIfCurrentTokenIsSemicolon() { |
| 150 | if parser.currentToken.Type == token.SEMICOLON { |
| 151 | parser.nextToken() |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | // parseInsertCommand - Return ast.InsertCommand created from tokens and validate the syntax |
| 156 | // |
no test coverage detected