fix bug when insert multiple slices with customize table name #1433

Merged
lunny merged 3 commits from lunny/fix_insert_multiple into master 2019-09-25 08:42:25 +00:00
Showing only changes of commit 84f550d40e - Show all commits

View File

@ -254,6 +254,9 @@ func (db *mssql) SqlType(c *core.Column) string {
case core.TinyInt:
res = core.TinyInt
c.Length = 0
case core.BigInt:
res = core.BigInt
c.Length = 0
default:
res = t
}