(str string)
| 11 | ) |
| 12 | |
| 13 | func makeSQLScanner(str string) scanner.SQLScanner { |
| 14 | var s scanner.SQLScanner |
| 15 | s.Init(str) |
| 16 | return s |
| 17 | } |
| 18 | |
| 19 | // SplitFirstStatement returns the length of the prefix of the string up to and |
| 20 | // including the first semicolon that separates statements. If there is no |
no test coverage detected
searching dependent graphs…