(statement string)
| 42 | } |
| 43 | |
| 44 | func splitBySemi(statement string) ([]base.Statement, error) { |
| 45 | t := tokenizer.NewTokenizer(statement) |
| 46 | return t.SplitStandardMultiSQL() |
| 47 | } |
| 48 | |
| 49 | // toBaseStatements converts omni's statement list into []base.Statement while |
| 50 | // enforcing byte-contiguity and position adjacency. Any bytes that omni did |
no test coverage detected