(list []base.Statement)
| 1303 | } |
| 1304 | |
| 1305 | func notEmptySQLCount(list []base.Statement) int { |
| 1306 | count := 0 |
| 1307 | for _, sql := range list { |
| 1308 | if !sql.Empty { |
| 1309 | count++ |
| 1310 | } |
| 1311 | } |
| 1312 | return count |
| 1313 | } |
| 1314 | |
| 1315 | func skipHeadingSQLWithoutSemicolon(statement string, caretLine int, caretOffset int) (string, int, int) { |
| 1316 | tokens := oracleparser.Tokenize(statement) |