Skip to content

Commit

Permalink
remove tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanc-n committed Nov 17, 2024
1 parent 5273ce6 commit daa5fe4
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions datafusion/sqllogictest/test_files/regexp.slt
Original file line number Diff line number Diff line change
Expand Up @@ -424,26 +424,6 @@ from (values ('a'), ('b')) as tbl(col);
NULL NULL NULL
NULL NULL NULL

query T
SELECT regexp_replace('a(b(c)d)e', '\\((b(c)d)\\)', '[\\1]', 'g') AS result;
----
a(b(c)d)e

# Utf8
query T
SELECT regexp_replace('Café Münchén', 'é', 'e', 'g') AS result;
----
Cafe München

query T
SELECT regexp_replace(arrow_cast(123.45, 'Utf8'), '\\.', 'X', 'g') AS result;
----
123.45

query T
SELECT regexp_replace(12345, '2', 'X', 'g') AS result;
----

# multiline string
query B
SELECT 'foo\nbar\nbaz' ~ 'bar';
Expand Down

0 comments on commit daa5fe4

Please sign in to comment.