Skip to content
Snippets Groups Projects
Commit 2692bc0e authored by Arseniy Volynets's avatar Arseniy Volynets :boy_tone5:
Browse files

feat(sql): support ilike operator

parent 01957b1c
No related branches found
No related tags found
No related merge requests found
Pipeline #50934 failed
Subproject commit f4942f8ecb8d5505714f32fb5e0d5aa1cb3c1f15
Subproject commit 1770795f439462854a8ef453adf74c3ae9079523
......@@ -5196,6 +5196,7 @@ def test_like(instance: Instance):
)
instance.sql(""" insert into t values (1, 'abacaba'), (2, 'AbaC'), (3, '%__%')""")
# test LIKE operator
data = instance.sql(r" select '_' like '\_' and '%' like '\%' from (values (1))")
assert data == [[True]]
......@@ -5257,3 +5258,21 @@ def test_like(instance: Instance):
match="ESCAPE expression must be a single character",
):
instance.sql(r"""select s like '%' escape 'a' || 'a' from t""")
# test ILIKE operator
data = instance.sql("select 'AbA' ilike 'aba' from (values (1))")
assert data[0] == [True]
data = instance.sql("select 'aba' ilike 'aBa' from (values (1))")
assert data[0] == [True]
data = instance.sql("select 'ABA' ilike '%b%' from (values (1))")
assert data[0] == [True]
data = instance.sql("select 'ABA' ilike '_b%' from (values (1))")
assert data[0] == [True]
data = instance.sql(
r"""select '%UU_' ilike '\%uu\_' escape '\' from (values (1))"""
)
assert data[0] == [True]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment