fix syntax error

This commit is contained in:
Eray Tufan
2025-08-11 14:46:25 +02:00
committed by mattn
parent e63a0c3f5b
commit 2e165e0718

View File

@@ -29,7 +29,7 @@ const (
var ( var (
ErrUnauthorized = errors.New("SQLITE_AUTH: Unauthorized") ErrUnauthorized = errors.New("SQLITE_AUTH: Unauthorized")
ErrAdminRequired = errors.New("SQLITE_AUTH: Unauthorized; Admin Privileges Required") ErrAdminRequired = errors.New("SQLITE_AUTH: Unauthorized; Admin Privileges Required")
errUserAuthNoLongerSupported = errors.New("sqlite3: the sqlite_userauth tag is no longer supported as the userauth extension is no longer supported by the SQLite authors, see https://github.com/mattn/go-sqlite3/issues/1341"). errUserAuthNoLongerSupported = errors.New("sqlite3: the sqlite_userauth tag is no longer supported as the userauth extension is no longer supported by the SQLite authors, see https://github.com/mattn/go-sqlite3/issues/1341")
) )
// Authenticate will perform an authentication of the provided username // Authenticate will perform an authentication of the provided username