LexDdlTableStorage data definition language column (repeated) ENGINE=InnoDB AUTO_INCREMENT=4080 DEFAULT CHARSET=utf8
(l *Lexer)
| 638 | // ENGINE=InnoDB AUTO_INCREMENT=4080 DEFAULT CHARSET=utf8 |
| 639 | // |
| 640 | func LexDdlTableStorage(l *Lexer) StateFn { |
| 641 | |
| 642 | l.SkipWhiteSpaces() |
| 643 | if l.IsEnd() { |
| 644 | return nil |
| 645 | } |
| 646 | |
| 647 | r := l.Peek() |
| 648 | if r == '=' { |
| 649 | return LexEngineKeyValue |
| 650 | } |
| 651 | return nil |
| 652 | } |
| 653 | |
| 654 | // LexDdlAlterColumn data definition language column alter |
| 655 | // |
nothing calls this directly
no test coverage detected