A database contains a table and a stored procedure defined as follows:

The log_table is initially empty, and a Data Engineer runs this command:
CALL insert_log(NULL::VARCHAR);
No other operations affect the log_table. What is the outcome of this procedure call?
Community Discussion