This commit is contained in:
Alexey Milovidov 2021-04-13 20:14:29 +03:00
parent 919e96dbbe
commit 924eb69217
2 changed files with 2 additions and 4 deletions

View File

@ -20,8 +20,6 @@
0
1
-
0
0
1
1
0

View File

@ -25,8 +25,8 @@ select hasSubstr(['a', 'b'], ['a', 'c']);
select hasSubstr(['a', 'c', 'b'], ['a', 'c']);
select '-';
select hasSubstr([1], ['a']);
select hasSubstr([[1, 2], [3, 4]], ['a', 'c']);
select hasSubstr([1], ['a']); -- { serverError 386 }
select hasSubstr([[1, 2], [3, 4]], ['a', 'c']); -- { serverError 386 }
select hasSubstr([[1, 2], [3, 4], [5, 8]], [[3, 4]]);
select hasSubstr([[1, 2], [3, 4], [5, 8]], [[3, 4], [5, 8]]);
select hasSubstr([[1, 2], [3, 4], [5, 8]], [[1, 2], [5, 8]]);