We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7a01c0 commit 78304bdCopy full SHA for 78304bd
internal/postgres/hba.go
@@ -67,7 +67,7 @@ func (*HostBasedAuthentication) quote(value string) string {
67
68
func (hba *HostBasedAuthentication) quoteDatabase(name string) string {
69
// Since PostgreSQL 16, a quoted string beginning with slash U+002F is
70
- // interpreted as a regular expression. Express these names a Postgres
+ // interpreted as a regular expression. Express these names as a Postgres
71
// regex that exactly matches the entire name.
72
if len(name) > 0 && name[0] == '/' {
73
name = "/^" +
0 commit comments