logica
logica copied to clipboard
Handling of Quoting in Rules
Working Case
Example("'case'");
✅ Correctly recognized as a valid call.
Failing Case
Example('"case"');
❌ Produces error:
[ Error ] Found no call in rule head.
To resolve this, we should use
@Engine("duckdb");
Example(QuoteIt("case"));
@EvgSkv I just realized I forgot the QuoteIt usage under Sqlite, could you please add it here for record : ) Thanks
PS: Is there a reason we use QuoteIt instead of'"case"'
Single quotes were added to Logica, let me know if anything is missing. Example CoLab