updated changelog and exposed search.TokenFunctions

This commit is contained in:
Gani Georgiev
2025-04-15 12:24:13 +03:00
parent 46186f84f0
commit bf9a7b1e3d
4 changed files with 14 additions and 12 deletions

View File

@@ -20,7 +20,7 @@ func TestTokenFunctionsGeoDistance(t *testing.T) {
}
defer testDB.Close()
fn, ok := tokenFunctions["geoDistance"]
fn, ok := TokenFunctions["geoDistance"]
if !ok {
t.Error("Expected geoDistance token function to be registered.")
}
@@ -173,7 +173,7 @@ func TestTokenFunctionsGeoDistanceExec(t *testing.T) {
}
defer testDB.Close()
fn, ok := tokenFunctions["geoDistance"]
fn, ok := TokenFunctions["geoDistance"]
if !ok {
t.Error("Expected geoDistance token function to be registered.")
}