Closed Shion1305 closed 1 month ago
This PR is a partial fix for issue #192.
("column""1")
The second bug (handling of column names with commas) will be addressed in a separate PR, which is still in progress.
SQLite implements its escaping logic as follows: https://github.com/sqlite/sqlite/blob/cf25c16a54f68d1ca095b91bd0ead840578b2bb4/ext/fts3/fts3.c#L464-L486
Refer test cases.
@jinzhu Hi! Is there any change you could review this PR? Thanks in advance 🙏
Description
This PR is a partial fix for issue #192.
Bug Descriptions:
Changes Introduced
("column""1")
.Additional Notes:
The second bug (handling of column names with commas) will be addressed in a separate PR, which is still in progress.
Reference
SQLite implements its escaping logic as follows: https://github.com/sqlite/sqlite/blob/cf25c16a54f68d1ca095b91bd0ead840578b2bb4/ext/fts3/fts3.c#L464-L486
User Case Description
Refer test cases.