From 242ccf2138da5f398d2651eb2300cf289b7101d5 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 04:29:46 +0000 Subject: [PATCH] fix: add ctype.h and fix sql_internal.c include path Co-Authored-By: Matt Wong --- app/utils/sql.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/utils/sql.c b/app/utils/sql.c index cab81707..6695c910 100644 --- a/app/utils/sql.c +++ b/app/utils/sql.c @@ -9,6 +9,7 @@ #include #include #include +#include #include "sqlite3.h" #include "sqlite3_csv_vtab-mem.h" @@ -169,7 +170,7 @@ static char is_select_sql(const char *s) { return found_from; // Must have FROM clause } -#include "sql_internal.c" +#include "../../app/sql_internal.c" int ZSV_MAIN_FUNC(ZSV_COMMAND)(int argc, const char *argv[], struct zsv_opts *opts, struct zsv_prop_handler *custom_prop_handler) {