You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
commit c6b7cc0
Author: Scott Dugas <sdugas@apple.com>
Date: Fri Feb 28 12:16:35 2025 -0500
Another test and referencing issue FoundationDB#3216
I figured out the proper behavior, and updated the comments when
pattern is just an escape character.
commit 545ba60
Author: Scott Dugas <sdugas@apple.com>
Date: Fri Feb 28 10:44:13 2025 -0500
Set supported_version for like.yamsql
commit 63eb20f
Author: Scott Dugas <sdugas@apple.com>
Date: Thu Feb 27 17:04:02 2025 -0500
Add some LIKE tests with single letter patterns
This adds some tests of LIKE queries that have single letter patterns
that actually match things. This is an effort to see if there are
other oddities in this area.
commit 582f498
Author: Scott Dugas <sdugas@apple.com>
Date: Thu Feb 27 17:03:15 2025 -0500
Improve error messages when failing to parse blocks
I forgot to put my test_blocks in separate documents, and this
helped me find my mistake.
commit 9f8acdf
Author: Scott Dugas <sdugas@apple.com>
Date: Thu Feb 27 16:03:51 2025 -0500
Fix continuation parsing for LIKE operators
Previously, it would parse the query as the escape character, making
continuations useless.
i.e. `LIKE 'XYZ' ESCAPE 'XYZ'`, regardless of what the original
query had for the escape character, if it had one.
This Resolves: FoundationDB#3099
A query like:
should error with
22025
because the\
is not escaping anything.Similarly, if an ESCAPE is specifically provided, it should fail:
Right now we will treat it the same as:
The text was updated successfully, but these errors were encountered: