Consider the following anonymous block:  BEGIN   INSERT INTO…

Consider the following anonymous block:  BEGIN   INSERT INTO countries (id, name)  VALUES (‘XA’, ‘Xanadu’);  SAVEPOINT XA;   INSERT INTO countries (id, name)  VALUES (‘NV’,’Neverland’);  COMMIT;   ROLLBACK TO XA; END; What happens when the block of code finishes?