You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
442 B
Go
24 lines
442 B
Go
package gen
|
|
|
|
import (
|
|
"regexp"
|
|
)
|
|
|
|
func (g *defaultGenerator) split() []string {
|
|
reg := regexp.MustCompile(createTableFlag)
|
|
index := reg.FindAllStringIndex(g.source, -1)
|
|
list := make([]string, 0)
|
|
source := g.source
|
|
for i := len(index) - 1; i >= 0; i-- {
|
|
subIndex := index[i]
|
|
if len(subIndex) == 0 {
|
|
continue
|
|
}
|
|
start := subIndex[0]
|
|
ddl := source[start:]
|
|
list = append(list, ddl)
|
|
source = source[:start]
|
|
}
|
|
return list
|
|
}
|