oracle support doulbe quote but not square quote

This commit is contained in:
Lunny Xiao 2020-03-03 20:49:44 +08:00
parent 6160c8c670
commit cb199fcae2
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A
1 changed files with 1 additions and 1 deletions

View File

@ -554,7 +554,7 @@ func (db *oracle) IsReserved(name string) bool {
}
func (db *oracle) Quoter() schemas.Quoter {
return schemas.Quoter{"[", "]"}
return schemas.Quoter{"\"", "\""}
}
func (db *oracle) SupportEngine() bool {