Not sure if a bug or not. The following in a SQLDe...
# squarelibraries
m
Not sure if a bug or not. The following in a SQLDelight
.sq
file:
Copy code
DELETE FROM records WHERE key LIKE ? ESCAPE '\';
generates a query like
Copy code
"""DELETE FROM records WHERE key LIKE ? ESCAPE '\\'""" <== backslash is escaped here
which throws at runtime with:
Copy code
ESCAPE expression must be a single character
Am I escaping wrong?