Don't override LIKE.

This commit is contained in:
Nuno Cruces
2024-09-30 13:30:50 +01:00
parent 25fc5a606a
commit 170e1dbebd
6 changed files with 22 additions and 11 deletions

View File

@@ -29,7 +29,7 @@ import (
// Register registers cryptographic hash functions for a database connection.
func Register(db *sqlite3.Conn) error {
flags := sqlite3.DETERMINISTIC | sqlite3.INNOCUOUS
const flags = sqlite3.DETERMINISTIC | sqlite3.INNOCUOUS
var errs util.ErrorJoiner
if crypto.MD4.Available() {