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 9cfa350 commit 1f57934Copy full SHA for 1f57934
pkg/server/server_test.go
@@ -1887,6 +1887,9 @@ func TestServerIsValidDBName(t *testing.T) {
1887
err = isValidDBName("-")
1888
require.ErrorContains(t, err, "punctuation marks and symbols are not allowed in database name")
1889
1890
+ err = isValidDBName("_")
1891
+ require.NoError(t, err)
1892
+
1893
err = isValidDBName(strings.Repeat("a", 32))
1894
require.NoError(t, err)
1895
0 commit comments