penberg / limbo

Limbo is a work-in-progress, in-process OLTP database management system, compatible with SQLite.
MIT License
960 stars 53 forks source link

fix: double quoted string in function #210

Closed JeanArhancet closed 1 month ago

JeanArhancet commented 1 month ago

Closes #196

This PR addresses an issue with the SQL function that accepts double-quoted strings. The function works correctly when the string is an existing column but fails otherwise.

Examples:

penberg commented 1 month ago

@JeanArhancet I am closing this pull request because I believe the current behavior is correct. Double quotations in SQL are there to specify identifiers (table names, column names, etc.) in case sensitive manner. Single quotations are used for string literals.