Fix mssql quote

This commit is contained in:
Lunny Xiao 2020-02-21 11:34:37 +08:00
parent bf25a77bca
commit 91aab83eab
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ func (db *mssql) IsReserved(name string) bool {
}
func (db *mssql) Quote(name string) string {
return "\"" + name + "\""
return "[" + name + "]"
}
func (db *mssql) SupportEngine() bool {