aboutsummaryrefslogtreecommitdiffstats
path: root/streamingvisitors/src/vespa/vsm/searcher
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2024-01-12 08:31:42 +0100
committerGitHub <noreply@github.com>2024-01-12 08:31:42 +0100
commitbf36335a51ebd64240d4003052ef4a2bd332e0aa (patch)
tree054cb60f1c0ee0b38ecd1783e9da6fef8b40c5f4 /streamingvisitors/src/vespa/vsm/searcher
parent948adaaacb761f41911a9a13b2a3260f7081ee5c (diff)
Revert "Balder/unify attributes over streaming indexed"
Diffstat (limited to 'streamingvisitors/src/vespa/vsm/searcher')
-rw-r--r--streamingvisitors/src/vespa/vsm/searcher/utf8exactstringfieldsearcher.cpp2
-rw-r--r--streamingvisitors/src/vespa/vsm/searcher/utf8exactstringfieldsearcher.h2
-rw-r--r--streamingvisitors/src/vespa/vsm/searcher/utf8flexiblestringfieldsearcher.h5
-rw-r--r--streamingvisitors/src/vespa/vsm/searcher/utf8substringsearcher.h2
4 files changed, 6 insertions, 5 deletions
diff --git a/streamingvisitors/src/vespa/vsm/searcher/utf8exactstringfieldsearcher.cpp b/streamingvisitors/src/vespa/vsm/searcher/utf8exactstringfieldsearcher.cpp
index a7cb2300b74..724efb54331 100644
--- a/streamingvisitors/src/vespa/vsm/searcher/utf8exactstringfieldsearcher.cpp
+++ b/streamingvisitors/src/vespa/vsm/searcher/utf8exactstringfieldsearcher.cpp
@@ -14,7 +14,7 @@ UTF8ExactStringFieldSearcher::duplicate() const
}
size_t
-UTF8ExactStringFieldSearcher::matchTerms(const FieldRef & f, size_t mintsz)
+UTF8ExactStringFieldSearcher::matchTerms(const FieldRef & f, const size_t mintsz)
{
(void) mintsz;
for (auto qt : _qtl) {
diff --git a/streamingvisitors/src/vespa/vsm/searcher/utf8exactstringfieldsearcher.h b/streamingvisitors/src/vespa/vsm/searcher/utf8exactstringfieldsearcher.h
index 7ed4c125573..aaf8b940dc8 100644
--- a/streamingvisitors/src/vespa/vsm/searcher/utf8exactstringfieldsearcher.h
+++ b/streamingvisitors/src/vespa/vsm/searcher/utf8exactstringfieldsearcher.h
@@ -1,7 +1,7 @@
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
-#include "utf8stringfieldsearcherbase.h"
+#include <vespa/vsm/searcher/utf8stringfieldsearcherbase.h>
namespace vsm
{
diff --git a/streamingvisitors/src/vespa/vsm/searcher/utf8flexiblestringfieldsearcher.h b/streamingvisitors/src/vespa/vsm/searcher/utf8flexiblestringfieldsearcher.h
index bb1b55dffe4..04fbee96d36 100644
--- a/streamingvisitors/src/vespa/vsm/searcher/utf8flexiblestringfieldsearcher.h
+++ b/streamingvisitors/src/vespa/vsm/searcher/utf8flexiblestringfieldsearcher.h
@@ -1,9 +1,10 @@
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
-#include "utf8stringfieldsearcherbase.h"
+#include <vespa/vsm/searcher/utf8stringfieldsearcherbase.h>
-namespace vsm {
+namespace vsm
+{
/**
* This class does utf8 searches based on the query term type.
diff --git a/streamingvisitors/src/vespa/vsm/searcher/utf8substringsearcher.h b/streamingvisitors/src/vespa/vsm/searcher/utf8substringsearcher.h
index cee35993ce7..22ecf9c41fa 100644
--- a/streamingvisitors/src/vespa/vsm/searcher/utf8substringsearcher.h
+++ b/streamingvisitors/src/vespa/vsm/searcher/utf8substringsearcher.h
@@ -1,7 +1,7 @@
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
-#include "utf8strchrfieldsearcher.h"
+#include <vespa/vsm/searcher/utf8strchrfieldsearcher.h>
namespace vsm {