Fix typo in test

This commit is contained in:
Alexey Milovidov 2020-05-08 02:33:31 +03:00
parent 1f0d95e5c3
commit a366e6924b
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ SELECT extractAllGroups('hello'); --{serverError 42} not enough arguments
SELECT extractAllGroups('hello', 123); --{serverError 43} invalid argument type
SELECT extractAllGroups(123, 'world'); --{serverError 43} invalid argument type
SELECT extractAllGroups('hello world', '((('); --{serverError 427} invalid re
SELECT extractAllGroups('hello world', materialize('\\w+')); --{serverError 44} non-cons needle
SELECT extractAllGroups('hello world', materialize('\\w+')); --{serverError 44} non-const needle
SELECT '0 groups, zero matches';
SELECT extractAllGroups('hello world', '\\w+');

View File

@ -4,7 +4,7 @@ SELECT extractGroups('hello'); --{serverError 42} not enough arguments
SELECT extractGroups('hello', 123); --{serverError 43} invalid argument type
SELECT extractGroups(123, 'world'); --{serverError 43} invalid argument type
SELECT extractGroups('hello world', '((('); --{serverError 427} invalid re
SELECT extractGroups('hello world', materialize('\\w+')); --{serverError 44} non-cons needle
SELECT extractGroups('hello world', materialize('\\w+')); --{serverError 44} non-const needle
SELECT '0 groups, zero matches';
SELECT extractGroups('hello world', '\\w+');