For the FileBackedHistory those operations have always been case
sensitive, do the same for SqliteBackedHistory. The insensitivity of
like in sqlite causes https://github.com/nushell/nushell/issues/10131
Replace this with exact matching via sqlite's instr(), which should also fix a need for escaping of % (or * with glob)
After merging downstream will close https://github.com/nushell/nushell/issues/10131
For the
FileBackedHistory
those operations have always been case sensitive, do the same forSqliteBackedHistory
. The insensitivity oflike
in sqlite causes https://github.com/nushell/nushell/issues/10131Replace this with exact matching via sqlite's
instr()
, which should also fix a need for escaping of%
(or*
withglob
)