From e7076b381c55f634a7095f36a52612621640a715 Mon Sep 17 00:00:00 2001 From: junsklee <50674368+junsklee@users.noreply.github.com> Date: Fri, 8 Nov 2024 15:17:49 +0900 Subject: [PATCH] [CUBRIDQA-1236] Added support for DELETE statements for query plans (#688) --- CTP/sql_by_cci/execute.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CTP/sql_by_cci/execute.c b/CTP/sql_by_cci/execute.c index 3261dd32..c9019099 100644 --- a/CTP/sql_by_cci/execute.c +++ b/CTP/sql_by_cci/execute.c @@ -1995,7 +1995,7 @@ execute (FILE * fp, char conn, const SqlStateStruce *pSqlState) dumptable (fp, req, conn, hasqueryplan, onlyjoingraph, hasfullplan); goto _END; } - else if (cmd_type == CUBRID_STMT_UPDATE) + else if (cmd_type == CUBRID_STMT_UPDATE || cmd_type == CUBRID_STMT_DELETE) { fprintf (fp, "%d\n", res); if (hasqueryplan)