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 91f7fdd commit 9823cb8Copy full SHA for 9823cb8
1 file changed
builder/store/database/namespace.go
@@ -60,7 +60,7 @@ func (s *NamespaceStoreImpl) Exists(ctx context.Context, path string) (exists bo
60
return s.db.Operator.Core.
61
NewSelect().
62
Model(&namespace).
63
- Where("path =?", path).
+ Where("LOWER(path) = LOWER(?)", path).
64
Exists(ctx)
65
}
66
0 commit comments