Mysql support a new tag Collate
This commit is contained in:
parent
18f8e7a86c
commit
eb3b01d8e0
|
@ -659,7 +659,7 @@ func (db *dameng) DropTableSQL(tableName string) (string, bool) {
|
||||||
|
|
||||||
// ModifyColumnSQL returns a SQL to modify SQL
|
// ModifyColumnSQL returns a SQL to modify SQL
|
||||||
func (db *dameng) ModifyColumnSQL(tableName string, col *schemas.Column) string {
|
func (db *dameng) ModifyColumnSQL(tableName string, col *schemas.Column) string {
|
||||||
s, _ := ColumnString(db.dialect, col, false)
|
s, _ := ColumnString(db.dialect, col, false, false)
|
||||||
return fmt.Sprintf("ALTER TABLE %s MODIFY %s", db.quoter.Quote(tableName), s)
|
return fmt.Sprintf("ALTER TABLE %s MODIFY %s", db.quoter.Quote(tableName), s)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -692,7 +692,7 @@ func (db *dameng) CreateTableSQL(ctx context.Context, queryer core.Queryer, tabl
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
s, _ := ColumnString(db, col, false)
|
s, _ := ColumnString(db, col, false, false)
|
||||||
if _, err := b.WriteString(s); err != nil {
|
if _, err := b.WriteString(s); err != nil {
|
||||||
return "", false, err
|
return "", false, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -135,7 +135,7 @@ func (db *Base) CreateTableSQL(ctx context.Context, queryer core.Queryer, table
|
||||||
|
|
||||||
for i, colName := range table.ColumnsSeq() {
|
for i, colName := range table.ColumnsSeq() {
|
||||||
col := table.GetColumn(colName)
|
col := table.GetColumn(colName)
|
||||||
s, _ := ColumnString(db.dialect, col, col.IsPrimaryKey && len(table.PrimaryKeys) == 1)
|
s, _ := ColumnString(db.dialect, col, col.IsPrimaryKey && len(table.PrimaryKeys) == 1, false)
|
||||||
b.WriteString(s)
|
b.WriteString(s)
|
||||||
|
|
||||||
if i != len(table.ColumnsSeq())-1 {
|
if i != len(table.ColumnsSeq())-1 {
|
||||||
|
@ -209,7 +209,7 @@ func (db *Base) IsColumnExist(queryer core.Queryer, ctx context.Context, tableNa
|
||||||
|
|
||||||
// AddColumnSQL returns a SQL to add a column
|
// AddColumnSQL returns a SQL to add a column
|
||||||
func (db *Base) AddColumnSQL(tableName string, col *schemas.Column) string {
|
func (db *Base) AddColumnSQL(tableName string, col *schemas.Column) string {
|
||||||
s, _ := ColumnString(db.dialect, col, true)
|
s, _ := ColumnString(db.dialect, col, true, false)
|
||||||
return fmt.Sprintf("ALTER TABLE %s ADD %s", db.dialect.Quoter().Quote(tableName), s)
|
return fmt.Sprintf("ALTER TABLE %s ADD %s", db.dialect.Quoter().Quote(tableName), s)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -241,7 +241,7 @@ func (db *Base) DropIndexSQL(tableName string, index *schemas.Index) string {
|
||||||
|
|
||||||
// ModifyColumnSQL returns a SQL to modify SQL
|
// ModifyColumnSQL returns a SQL to modify SQL
|
||||||
func (db *Base) ModifyColumnSQL(tableName string, col *schemas.Column) string {
|
func (db *Base) ModifyColumnSQL(tableName string, col *schemas.Column) string {
|
||||||
s, _ := ColumnString(db.dialect, col, false)
|
s, _ := ColumnString(db.dialect, col, false, false)
|
||||||
return fmt.Sprintf("ALTER TABLE %s MODIFY COLUMN %s", db.quoter.Quote(tableName), s)
|
return fmt.Sprintf("ALTER TABLE %s MODIFY COLUMN %s", db.quoter.Quote(tableName), s)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -254,9 +254,7 @@ func (db *Base) ForUpdateSQL(query string) string {
|
||||||
func (db *Base) SetParams(params map[string]string) {
|
func (db *Base) SetParams(params map[string]string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var dialects = map[string]func() Dialect{}
|
||||||
dialects = map[string]func() Dialect{}
|
|
||||||
)
|
|
||||||
|
|
||||||
// RegisterDialect register database dialect
|
// RegisterDialect register database dialect
|
||||||
func RegisterDialect(dbName schemas.DBType, dialectFunc func() Dialect) {
|
func RegisterDialect(dbName schemas.DBType, dialectFunc func() Dialect) {
|
||||||
|
@ -307,7 +305,7 @@ func init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// ColumnString generate column description string according dialect
|
// ColumnString generate column description string according dialect
|
||||||
func ColumnString(dialect Dialect, col *schemas.Column, includePrimaryKey bool) (string, error) {
|
func ColumnString(dialect Dialect, col *schemas.Column, includePrimaryKey, supportCollation bool) (string, error) {
|
||||||
bd := strings.Builder{}
|
bd := strings.Builder{}
|
||||||
|
|
||||||
if err := dialect.Quoter().QuoteTo(&bd, col.Name); err != nil {
|
if err := dialect.Quoter().QuoteTo(&bd, col.Name); err != nil {
|
||||||
|
@ -322,6 +320,15 @@ func ColumnString(dialect Dialect, col *schemas.Column, includePrimaryKey bool)
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if supportCollation && col.Collate != "" {
|
||||||
|
if _, err := bd.WriteString(" COLLATE "); err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
if _, err := bd.WriteString(col.Collate); err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if includePrimaryKey && col.IsPrimaryKey {
|
if includePrimaryKey && col.IsPrimaryKey {
|
||||||
if _, err := bd.WriteString(" PRIMARY KEY"); err != nil {
|
if _, err := bd.WriteString(" PRIMARY KEY"); err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
|
|
|
@ -428,7 +428,7 @@ func (db *mssql) DropTableSQL(tableName string) (string, bool) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (db *mssql) ModifyColumnSQL(tableName string, col *schemas.Column) string {
|
func (db *mssql) ModifyColumnSQL(tableName string, col *schemas.Column) string {
|
||||||
s, _ := ColumnString(db.dialect, col, false)
|
s, _ := ColumnString(db.dialect, col, false, false)
|
||||||
return fmt.Sprintf("ALTER TABLE %s ALTER COLUMN %s", db.quoter.Quote(tableName), s)
|
return fmt.Sprintf("ALTER TABLE %s ALTER COLUMN %s", db.quoter.Quote(tableName), s)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -646,7 +646,7 @@ func (db *mssql) CreateTableSQL(ctx context.Context, queryer core.Queryer, table
|
||||||
|
|
||||||
for i, colName := range table.ColumnsSeq() {
|
for i, colName := range table.ColumnsSeq() {
|
||||||
col := table.GetColumn(colName)
|
col := table.GetColumn(colName)
|
||||||
s, _ := ColumnString(db.dialect, col, col.IsPrimaryKey && len(table.PrimaryKeys) == 1)
|
s, _ := ColumnString(db.dialect, col, col.IsPrimaryKey && len(table.PrimaryKeys) == 1, false)
|
||||||
b.WriteString(s)
|
b.WriteString(s)
|
||||||
|
|
||||||
if i != len(table.ColumnsSeq())-1 {
|
if i != len(table.ColumnsSeq())-1 {
|
||||||
|
|
|
@ -380,7 +380,7 @@ func (db *mysql) IsTableExist(queryer core.Queryer, ctx context.Context, tableNa
|
||||||
|
|
||||||
func (db *mysql) AddColumnSQL(tableName string, col *schemas.Column) string {
|
func (db *mysql) AddColumnSQL(tableName string, col *schemas.Column) string {
|
||||||
quoter := db.dialect.Quoter()
|
quoter := db.dialect.Quoter()
|
||||||
s, _ := ColumnString(db, col, true)
|
s, _ := ColumnString(db, col, true, true)
|
||||||
var b strings.Builder
|
var b strings.Builder
|
||||||
b.WriteString("ALTER TABLE ")
|
b.WriteString("ALTER TABLE ")
|
||||||
quoter.QuoteTo(&b, tableName)
|
quoter.QuoteTo(&b, tableName)
|
||||||
|
@ -394,6 +394,12 @@ func (db *mysql) AddColumnSQL(tableName string, col *schemas.Column) string {
|
||||||
return b.String()
|
return b.String()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ModifyColumnSQL returns a SQL to modify SQL
|
||||||
|
func (db *mysql) ModifyColumnSQL(tableName string, col *schemas.Column) string {
|
||||||
|
s, _ := ColumnString(db.dialect, col, false, true)
|
||||||
|
return fmt.Sprintf("ALTER TABLE %s MODIFY COLUMN %s", db.quoter.Quote(tableName), s)
|
||||||
|
}
|
||||||
|
|
||||||
func (db *mysql) GetColumns(queryer core.Queryer, ctx context.Context, tableName string) ([]string, map[string]*schemas.Column, error) {
|
func (db *mysql) GetColumns(queryer core.Queryer, ctx context.Context, tableName string) ([]string, map[string]*schemas.Column, error) {
|
||||||
args := []interface{}{db.uri.DBName, tableName}
|
args := []interface{}{db.uri.DBName, tableName}
|
||||||
alreadyQuoted := "(INSTR(VERSION(), 'maria') > 0 && " +
|
alreadyQuoted := "(INSTR(VERSION(), 'maria') > 0 && " +
|
||||||
|
@ -646,7 +652,7 @@ func (db *mysql) CreateTableSQL(ctx context.Context, queryer core.Queryer, table
|
||||||
|
|
||||||
for i, colName := range table.ColumnsSeq() {
|
for i, colName := range table.ColumnsSeq() {
|
||||||
col := table.GetColumn(colName)
|
col := table.GetColumn(colName)
|
||||||
s, _ := ColumnString(db.dialect, col, col.IsPrimaryKey && len(table.PrimaryKeys) == 1)
|
s, _ := ColumnString(db.dialect, col, col.IsPrimaryKey && len(table.PrimaryKeys) == 1, true)
|
||||||
b.WriteString(s)
|
b.WriteString(s)
|
||||||
|
|
||||||
if len(col.Comment) > 0 {
|
if len(col.Comment) > 0 {
|
||||||
|
|
|
@ -628,7 +628,7 @@ func (db *oracle) CreateTableSQL(ctx context.Context, queryer core.Queryer, tabl
|
||||||
/*if col.IsPrimaryKey && len(pkList) == 1 {
|
/*if col.IsPrimaryKey && len(pkList) == 1 {
|
||||||
sql += col.String(b.dialect)
|
sql += col.String(b.dialect)
|
||||||
} else {*/
|
} else {*/
|
||||||
s, _ := ColumnString(db, col, false)
|
s, _ := ColumnString(db, col, false, false)
|
||||||
sql += s
|
sql += s
|
||||||
// }
|
// }
|
||||||
sql = strings.TrimSpace(sql)
|
sql = strings.TrimSpace(sql)
|
||||||
|
|
|
@ -992,7 +992,7 @@ func (db *postgres) IsTableExist(queryer core.Queryer, ctx context.Context, tabl
|
||||||
}
|
}
|
||||||
|
|
||||||
func (db *postgres) AddColumnSQL(tableName string, col *schemas.Column) string {
|
func (db *postgres) AddColumnSQL(tableName string, col *schemas.Column) string {
|
||||||
s, _ := ColumnString(db.dialect, col, true)
|
s, _ := ColumnString(db.dialect, col, true, false)
|
||||||
|
|
||||||
quoter := db.dialect.Quoter()
|
quoter := db.dialect.Quoter()
|
||||||
addColumnSQL := ""
|
addColumnSQL := ""
|
||||||
|
|
|
@ -458,7 +458,7 @@ func TestSync2_2(t *testing.T) {
|
||||||
|
|
||||||
assert.NoError(t, PrepareEngine())
|
assert.NoError(t, PrepareEngine())
|
||||||
|
|
||||||
var tableNames = make(map[string]bool)
|
tableNames := make(map[string]bool)
|
||||||
for i := 0; i < 10; i++ {
|
for i := 0; i < 10; i++ {
|
||||||
tableName := fmt.Sprintf("test_sync2_index_%d", i)
|
tableName := fmt.Sprintf("test_sync2_index_%d", i)
|
||||||
tableNames[tableName] = true
|
tableNames[tableName] = true
|
||||||
|
@ -536,3 +536,58 @@ func TestModifyColum(t *testing.T) {
|
||||||
_, err := testEngine.Exec(alterSQL)
|
_, err := testEngine.Exec(alterSQL)
|
||||||
assert.NoError(t, err)
|
assert.NoError(t, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestCollate(t *testing.T) {
|
||||||
|
type TestCollateColumn struct {
|
||||||
|
Id int64
|
||||||
|
UserId int64 `xorm:"unique(s)"`
|
||||||
|
Name string `xorm:"varchar(20) unique(s) collate utf8mb4_general_ci"`
|
||||||
|
}
|
||||||
|
|
||||||
|
assert.NoError(t, PrepareEngine())
|
||||||
|
assertSync(t, new(TestCollateColumn))
|
||||||
|
|
||||||
|
_, err := testEngine.Insert(&TestCollateColumn{
|
||||||
|
UserId: 1,
|
||||||
|
Name: "test",
|
||||||
|
})
|
||||||
|
assert.NoError(t, err)
|
||||||
|
_, err = testEngine.Insert(&TestCollateColumn{
|
||||||
|
UserId: 1,
|
||||||
|
Name: "Test",
|
||||||
|
})
|
||||||
|
if testEngine.Dialect().URI().DBType == schemas.MYSQL {
|
||||||
|
assert.Error(t, err)
|
||||||
|
} else {
|
||||||
|
assert.NoError(t, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Since SQLITE don't support modify column SQL, currrently just ignore
|
||||||
|
if testEngine.Dialect().URI().DBType == schemas.SQLITE {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
alterSQL := testEngine.Dialect().ModifyColumnSQL("test_collate_column", &schemas.Column{
|
||||||
|
Name: "name",
|
||||||
|
SQLType: schemas.SQLType{
|
||||||
|
Name: "VARCHAR",
|
||||||
|
},
|
||||||
|
Length: 20,
|
||||||
|
Nullable: true,
|
||||||
|
DefaultIsEmpty: true,
|
||||||
|
Collate: "utf8mb4_bin",
|
||||||
|
})
|
||||||
|
_, err = testEngine.Exec(alterSQL)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
_, err = testEngine.Insert(&TestCollateColumn{
|
||||||
|
UserId: 1,
|
||||||
|
Name: "test1",
|
||||||
|
})
|
||||||
|
assert.NoError(t, err)
|
||||||
|
_, err = testEngine.Insert(&TestCollateColumn{
|
||||||
|
UserId: 1,
|
||||||
|
Name: "Test1",
|
||||||
|
})
|
||||||
|
assert.NoError(t, err)
|
||||||
|
}
|
|
@ -45,6 +45,7 @@ type Column struct {
|
||||||
DisableTimeZone bool
|
DisableTimeZone bool
|
||||||
TimeZone *time.Location // column specified time zone
|
TimeZone *time.Location // column specified time zone
|
||||||
Comment string
|
Comment string
|
||||||
|
Collate string
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewColumn creates a new column
|
// NewColumn creates a new column
|
||||||
|
|
|
@ -123,6 +123,7 @@ var defaultTagHandlers = map[string]Handler{
|
||||||
"COMMENT": CommentTagHandler,
|
"COMMENT": CommentTagHandler,
|
||||||
"EXTENDS": ExtendsTagHandler,
|
"EXTENDS": ExtendsTagHandler,
|
||||||
"UNSIGNED": UnsignedTagHandler,
|
"UNSIGNED": UnsignedTagHandler,
|
||||||
|
"COLLATE": CollateTagHandler,
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
@ -282,6 +283,13 @@ func CommentTagHandler(ctx *Context) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func CollateTagHandler(ctx *Context) error {
|
||||||
|
if len(ctx.params) > 0 {
|
||||||
|
ctx.col.Collate = strings.Trim(ctx.params[0], "' ")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// SQLTypeTagHandler describes SQL Type tag handler
|
// SQLTypeTagHandler describes SQL Type tag handler
|
||||||
func SQLTypeTagHandler(ctx *Context) error {
|
func SQLTypeTagHandler(ctx *Context) error {
|
||||||
ctx.col.SQLType = schemas.SQLType{Name: ctx.tagUname}
|
ctx.col.SQLType = schemas.SQLType{Name: ctx.tagUname}
|
||||||
|
|
|
@ -11,11 +11,12 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestSplitTag(t *testing.T) {
|
func TestSplitTag(t *testing.T) {
|
||||||
var cases = []struct {
|
cases := []struct {
|
||||||
tag string
|
tag string
|
||||||
tags []tag
|
tags []tag
|
||||||
}{
|
}{
|
||||||
{"not null default '2000-01-01 00:00:00' TIMESTAMP", []tag{
|
{
|
||||||
|
"not null default '2000-01-01 00:00:00' TIMESTAMP", []tag{
|
||||||
{
|
{
|
||||||
name: "not",
|
name: "not",
|
||||||
},
|
},
|
||||||
|
@ -33,13 +34,15 @@ func TestSplitTag(t *testing.T) {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{"TEXT", []tag{
|
{
|
||||||
|
"TEXT", []tag{
|
||||||
{
|
{
|
||||||
name: "TEXT",
|
name: "TEXT",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{"default('2000-01-01 00:00:00')", []tag{
|
{
|
||||||
|
"default('2000-01-01 00:00:00')", []tag{
|
||||||
{
|
{
|
||||||
name: "default",
|
name: "default",
|
||||||
params: []string{
|
params: []string{
|
||||||
|
@ -48,7 +51,8 @@ func TestSplitTag(t *testing.T) {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{"json binary", []tag{
|
{
|
||||||
|
"json binary", []tag{
|
||||||
{
|
{
|
||||||
name: "json",
|
name: "json",
|
||||||
},
|
},
|
||||||
|
@ -57,14 +61,16 @@ func TestSplitTag(t *testing.T) {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{"numeric(10, 2)", []tag{
|
{
|
||||||
|
"numeric(10, 2)", []tag{
|
||||||
{
|
{
|
||||||
name: "numeric",
|
name: "numeric",
|
||||||
params: []string{"10", "2"},
|
params: []string{"10", "2"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{"numeric(10, 2) notnull", []tag{
|
{
|
||||||
|
"numeric(10, 2) notnull", []tag{
|
||||||
{
|
{
|
||||||
name: "numeric",
|
name: "numeric",
|
||||||
params: []string{"10", "2"},
|
params: []string{"10", "2"},
|
||||||
|
@ -74,6 +80,14 @@ func TestSplitTag(t *testing.T) {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"collate utf8mb4_bin", []tag{
|
||||||
|
{
|
||||||
|
name: "collate",
|
||||||
|
params: []string{"utf8mb4_bin"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, kase := range cases {
|
for _, kase := range cases {
|
||||||
|
|
Loading…
Reference in New Issue