Fix 00928_multi_match_constant_constant.sql

Difficult to test because x86 and ARM behave differently due to
vectorscan not available everyehwere ... The same stuff
(multiFuzzyMatch) is tested elsewhere.
This commit is contained in:
Robert Schulze 2022-07-05 13:47:48 +02:00
parent d0b2f13f9d
commit 2b31d68cef
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A
2 changed files with 0 additions and 13 deletions

View File

@ -1,7 +1,3 @@
1
1
2
2
[2]
[2]
[1,8]

View File

@ -1,12 +1,3 @@
-- Tags: no-fasttest
SELECT multiMatchAny('goodbye', ['^hello[, ]+world$', 'go+d *bye', 'w(or)+ld']);
SELECT multiFuzzyMatchAny('goodbye', 1, ['^hello[, ]+world$', 'go+d *bye', 'w(or)+ld']);
SELECT multiMatchAnyIndex('goodbye', ['^hello[, ]+world$', 'go+d *bye', 'w(or)+ld']);
SELECT multiFuzzyMatchAnyIndex('goodbye', 1, ['^hello[, ]+world$', 'go+d *bye', 'w(or)+ld']);
SELECT multiMatchAllIndices('goodbye', ['^hello[, ]+world$', 'go+d *bye', 'w(or)+ld']);
SELECT multiFuzzyMatchAllIndices('goodbye', 1, ['^hello[, ]+world$', 'go+d *bye', 'w(or)+ld']);
SELECT multiSearchAllPositions('hello, world', ['hello', 'world']);