diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-08-05 14:21:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-05 14:21:12 +0200 |
commit | 7b0e11f7094967eb63033f6e520f2f4309f06a72 (patch) | |
tree | 8fdea50d576df562becba9a3abf32e7591f399ea | |
parent | 2ca8ff83f2537091f84b6fb4912524d124a67d40 (diff) | |
parent | f10e525e0c6f732b1d084129e576c0e8f7b3af14 (diff) | |
download | nextcloud-server-7b0e11f7094967eb63033f6e520f2f4309f06a72.tar.gz nextcloud-server-7b0e11f7094967eb63033f6e520f2f4309f06a72.zip |
Merge pull request #16639 from nextcloud/feature/noid/new-types
Adding comparaison types: +regex +wildcard (fulltextsearch)
-rw-r--r-- | lib/public/FullTextSearch/Model/ISearchRequestSimpleQuery.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/public/FullTextSearch/Model/ISearchRequestSimpleQuery.php b/lib/public/FullTextSearch/Model/ISearchRequestSimpleQuery.php index fb390f8fff1..08884e25c2b 100644 --- a/lib/public/FullTextSearch/Model/ISearchRequestSimpleQuery.php +++ b/lib/public/FullTextSearch/Model/ISearchRequestSimpleQuery.php @@ -55,6 +55,8 @@ interface ISearchRequestSimpleQuery { const COMPARE_TYPE_INT_LT = 7; const COMPARE_TYPE_BOOL = 8; const COMPARE_TYPE_ARRAY = 9; + const COMPARE_TYPE_REGEX = 10; + const COMPARE_TYPE_WILDCARD = 11; /** |