Skip to content

Commit

Permalink
sqllite's like is case insensitive, remove the offending test case
Browse files Browse the repository at this point in the history
  • Loading branch information
srikrishnak committed Nov 21, 2024
1 parent cf8851f commit 5e71e89
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/cases/string/like.test
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
# basic: Basic examples without any special cases
like('abcdefg'::str, 'abcdefg'::str) = true::bool
like('abcdefg'::str, 'abc'::str) = false::bool
like('abcdefg'::str, 'ABCDEFG'::str) = false::bool

# wildcard: Examples using wildcards
like('abcdefg'::str, 'abc%'::str) = true::bool
Expand Down

0 comments on commit 5e71e89

Please sign in to comment.