代码拉取完成,页面将自动刷新
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"),
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。