format code style

This commit is contained in:
mars 2022-10-12 13:45:55 +08:00
parent c5e5887e1a
commit 683b854b78
1 changed files with 3 additions and 3 deletions

View File

@ -769,9 +769,9 @@ var (
} }
postgresQuoter = schemas.Quoter{ postgresQuoter = schemas.Quoter{
Prefix: '"', Prefix: '"',
Suffix: '"', Suffix: '"',
IsReserved: func(s string) bool { IsReserved: func(s string) bool {
return postgresReservedWords[strings.ToUpper(s)] return postgresReservedWords[strings.ToUpper(s)]
}, },
} }