(l *lexer)
| 273 | } |
| 274 | |
| 275 | func createTableExtra(l *lexer) state { |
| 276 | l.start = l.pos |
| 277 | for { |
| 278 | c := l.next() |
| 279 | |
| 280 | if l.hasPrefix("COMMENT=") { |
| 281 | l.pos += 8 |
| 282 | if !eatString(l) { |
| 283 | l.emit(TIllegal) |
| 284 | return nil |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | if c == semi { |
| 289 | l.rewind() |
| 290 | l.emit(TcreateTableExtraDetail) |
| 291 | |
| 292 | l.start = l.pos |
| 293 | l.next() |
| 294 | l.emit(TSemi) |
| 295 | return StartState |
| 296 | } |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | func createTableParamTypeState(l *lexer) state { |
| 301 | l.accept(whitespace) |