This commit is contained in:
Lunny Xiao 2013-12-24 14:08:49 +08:00
parent 10bf7b2e7f
commit bafda62d49
1 changed files with 4 additions and 1 deletions

View File

@ -165,11 +165,14 @@ where a.object_id=object_id('` + tableName + `')`
col.SQLType = SQLType{TimeStampz, 0, 0} col.SQLType = SQLType{TimeStampz, 0, 0}
case "NVARCHAR": case "NVARCHAR":
col.SQLType = SQLType{Varchar, 0, 0} col.SQLType = SQLType{Varchar, 0, 0}
case "IMAGE":
col.SQLType = SQLType{VarBinary, 0, 0}
default: default:
if _, ok := sqlTypes[ct]; ok { if _, ok := sqlTypes[ct]; ok {
col.SQLType = SQLType{ct, 0, 0} col.SQLType = SQLType{ct, 0, 0}
} else { } else {
return nil, nil, errors.New(fmt.Sprintf("unknow colType %v for %v", ct, col)) return nil, nil, errors.New(fmt.Sprintf("unknow colType %v for %v - %v",
ct, tableName, col.Name))
} }
} }