Oracle uses doulbe quotes for quoting table/column/etc. names

This commit is contained in:
tmalaher 2020-05-07 21:15:21 +00:00
parent 8ebcb8b557
commit e932d35977
1 changed files with 2 additions and 2 deletions

View File

@ -500,8 +500,8 @@ var (
} }
oracleQuoter = schemas.Quoter{ oracleQuoter = schemas.Quoter{
Prefix: '[', Prefix: '"',
Suffix: ']', Suffix: '"',
IsReserved: schemas.AlwaysReserve, IsReserved: schemas.AlwaysReserve,
} }
) )