1 Star 1 Fork 1

ideadawn/dbvm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
config.go 1.82 KB
一键复制 编辑 原始数据 按行查看 历史
ideadawn 提交于 2022-02-16 01:00 . 0.2.0 rc2
package mysql
import (
"regexp"
)
// MySQL配置
type mysqlConfig struct {
newLine []byte
defaultEnd []byte
commaGap []byte
delimiter []byte
empty []byte
commentBegin []byte
blockBegin []byte
blockCommit []byte
reAlter *regexp.Regexp
reAddColumn *regexp.Regexp
reAddPrimary *regexp.Regexp
reAddIndex *regexp.Regexp
reDropColumn *regexp.Regexp
reChangeColumn *regexp.Regexp
reModifyColumn *regexp.Regexp
reCreateTable *regexp.Regexp
reCreateTableINE *regexp.Regexp
reDropTable *regexp.Regexp
reDropTableIE *regexp.Regexp
}
// 初始化配置
var myCnf = &mysqlConfig{
newLine: []byte{'\n'},
defaultEnd: []byte{';'},
commaGap: []byte{','},
delimiter: []byte(`DELIMITER`),
empty: []byte{},
commentBegin: []byte(`--`),
blockBegin: []byte(`BEGIN;`),
blockCommit: []byte(`COMMIT;`),
reAlter: regexp.MustCompile("^(?is)[ \t\n]*(ALTER[ \t\n]+TABLE.*?)([ \t]+(?:ADD|CHANGE|MODIFY|DROP).*)"),
reAddColumn: regexp.MustCompile("^(?is)[ \t\n]*ADD[ \t\n]+COLUMN"),
reAddPrimary: regexp.MustCompile("^(?is)[ \t\n]*ADD[ \t\n]+PRIMARY"),
reAddIndex: regexp.MustCompile("^(?is)[ \t\n]*ADD[ \t\n]+(?:(?:UNIQUE[ \t\n]+)?(?:INDEX|KEY)|UNIQUE[ \t\n]+(?:INDEX|KEY)?)"),
reDropColumn: regexp.MustCompile("^(?is)[ \t\n]*DROP[ \t\n]+(?:COLUMN|INDEX|KEY|PRIMARY)"),
reChangeColumn: regexp.MustCompile("^(?is)[ \t\n]*CHANGE[ \t\n]+COLUMN"),
reModifyColumn: regexp.MustCompile("^(?is)[ \t\n]*MODIFY[ \t\n]+COLUMN"),
reCreateTable: regexp.MustCompile("^(?is)[ \t\n]*CREATE[ \t\n]+TABLE"),
reCreateTableINE: regexp.MustCompile("^(?is)[ \t\n]*CREATE[ \t\n]+TABLE[ \t\n]+IF[ \t\n]+NOT[ \t\n]+EXISTS"),
reDropTable: regexp.MustCompile("^(?is)[ \t\n]*DROP[ \t\n]+TABLE"),
reDropTableIE: regexp.MustCompile("^(?is)[ \t\n]*DROP[ \t\n]+TABLE[ \t\n]+IF[ \t\n]+EXISTS"),
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ideadawn/dbvm.git
git@gitee.com:ideadawn/dbvm.git
ideadawn
dbvm
dbvm
v0.2.5

搜索帮助