Skip to content

Commit d9bf6eb

Browse files
committedJan 21, 2019
[Tests] Add LIKE with underscore (_) as partially uncompiled expression for shp provider
1 parent 1903403 commit d9bf6eb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎tests/src/python/test_provider_shapefile.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,8 @@ def partiallyCompiledFilters(self):
203203
'name = \'apple\'',
204204
'name LIKE \'Apple\'',
205205
'name LIKE \'aPple\'',
206+
'name LIKE \'Ap_le\'',
207+
'name LIKE \'Ap\\_le\'',
206208
'"name"="name2"'])
207209

208210
def testRepack(self):

0 commit comments

Comments
 (0)
Please sign in to comment.