Skip to content

Commit

Permalink
[CUBRIDQA-1236] Added support for DELETE statements for query plans (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
junsklee authored Nov 8, 2024
1 parent 1eddf07 commit e7076b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CTP/sql_by_cci/execute.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e7076b3

Please sign in to comment.