mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Added missing test #3826
This commit is contained in:
parent
f6ce803eff
commit
b6ebe2df19
@ -0,0 +1,12 @@
|
||||
hello
|
||||
hel\\\\lo
|
||||
h\\{ell}o
|
||||
\\(h\\{ell}o\\)
|
||||
|
||||
\\(
|
||||
Hello\\(
|
||||
\\(Hello
|
||||
\\(\\(\\(\\(\\(\\(\\(\\(\\(
|
||||
\\\\
|
||||
\\\0\\\\\\|\\(\\)\\^\\$\\.\\[\\?\\*\\+\\{
|
||||
1
|
12
dbms/tests/queries/0_stateless/00807_regexp_quote_meta.sql
Normal file
12
dbms/tests/queries/0_stateless/00807_regexp_quote_meta.sql
Normal file
@ -0,0 +1,12 @@
|
||||
SELECT regexpQuoteMeta('hello');
|
||||
SELECT regexpQuoteMeta('hel\\lo');
|
||||
SELECT regexpQuoteMeta('h{ell}o');
|
||||
SELECT regexpQuoteMeta('(h{ell}o)');
|
||||
SELECT regexpQuoteMeta('');
|
||||
SELECT regexpQuoteMeta('(');
|
||||
SELECT regexpQuoteMeta('Hello(');
|
||||
SELECT regexpQuoteMeta('(Hello');
|
||||
SELECT regexpQuoteMeta('(((((((((');
|
||||
SELECT regexpQuoteMeta('\\');
|
||||
SELECT regexpQuoteMeta('\0\\|()^$.[?*+{');
|
||||
SELECT DISTINCT regexpQuoteMeta(toString(number)) = toString(number) FROM numbers(100000);
|
Loading…
Reference in New Issue
Block a user