Files
langchain-python/langchain
Jon Luo 882f7964fb fix sql misinterpretation of % in query (#1408)
% is being misinterpreted by sqlalchemy as parameter passing, so any
`LIKE 'asdf%'` will result in a value error with mysql, mariadb, and
maybe some others. This is one way to fix it - the alternative is to
simply double up %, like `LIKE 'asdf%%'` but this seemed cleaner in
terms of output.
Fixes #1383
2023-03-02 16:03:16 -08:00
..
2023-02-20 22:54:15 -08:00
2023-03-01 20:59:07 -08:00
2023-01-15 16:45:16 -08:00
2023-02-20 21:43:02 -08:00
2023-02-27 07:45:54 -08:00
2023-03-01 20:59:07 -08:00
2023-02-24 07:13:47 -08:00
2022-10-24 14:51:15 -07:00
2022-11-12 11:22:32 -08:00
2023-02-20 21:15:45 -08:00
2023-01-19 14:48:30 -08:00