Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
picodata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
picodata
Commits
2692bc0e
Commit
2692bc0e
authored
6 months ago
by
Arseniy Volynets
Browse files
Options
Downloads
Patches
Plain Diff
feat(sql): support ilike operator
parent
01957b1c
No related branches found
No related tags found
No related merge requests found
Pipeline
#50934
failed
6 months ago
Stage: test
Stage: docker
Stage: stress-test
Stage: front-deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sbroad
+1
-1
1 addition, 1 deletion
sbroad
test/int/test_sql.py
+19
-0
19 additions, 0 deletions
test/int/test_sql.py
with
20 additions
and
1 deletion
sbroad
@
1770795f
Compare
f4942f8e
...
1770795f
Subproject commit f494
2f8ecb8d5505714f32fb5e0d5aa1cb3c1f15
Subproject commit
1770795
f4
3
94
62854a8ef453adf74c3ae9079523
This diff is collapsed.
Click to expand it.
test/int/test_sql.py
+
19
−
0
View file @
2692bc0e
...
...
@@ -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
]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment