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 78304bd commit 51cb279Copy full SHA for 51cb279
internal/postgres/hba.go
@@ -83,7 +83,7 @@ func (hba *HostBasedAuthentication) quoteDatabase(name string) string {
83
84
func (hba *HostBasedAuthentication) quoteUser(name string) string {
85
// Since PostgreSQL 16, a quoted string beginning with slash U+002F is
86
- // interpreted as a regular expression. Express these names a Postgres
+ // interpreted as a regular expression. Express these names as a Postgres
87
// regex that exactly matches the entire name.
88
if len(name) > 0 && name[0] == '/' {
89
name = "/^" +
0 commit comments