diff --git a/natives/sqlite3/Makefile b/natives/sqlite3/Makefile index 30d217c5..73262f38 100644 --- a/natives/sqlite3/Makefile +++ b/natives/sqlite3/Makefile @@ -54,4 +54,7 @@ clean: rm sqlite3.h rm $(TARGET) +install: + cp $(TARGET) $(DST_PATH) + .PHONY: clean all diff --git a/src/core/parse.c b/src/core/parse.c index 804bbe0a..640690cd 100644 --- a/src/core/parse.c +++ b/src/core/parse.c @@ -419,7 +419,7 @@ static int longstring(DstParser *p, DstParseState *state, uint8_t c) { } else if (state->flags & PFLAG_END_CANDIDATE) { int i; /* We are checking a potential end of the string */ - if (c != '`' && state->qcount == state->argn) { + if (state->qcount == state->argn) { stringend(p, state); return 0; }