886
886
my_error(ER_SP_DOES_NOT_EXIST, MYF(0), "SAVEPOINT", lex->ident.str);
889
case SQLCOM_SAVEPOINT:
890
if (!(session->options & (OPTION_NOT_AUTOCOMMIT | OPTION_BEGIN)))
894
SAVEPOINT **sv, *newsv;
895
for (sv=&session->transaction.savepoints; *sv; sv=&(*sv)->prev)
897
if (my_strnncoll(system_charset_info,
898
(unsigned char *)lex->ident.str, lex->ident.length,
899
(unsigned char *)(*sv)->name, (*sv)->length) == 0)
902
if (*sv) /* old savepoint of the same name exists */
905
ha_release_savepoint(session, *sv); // it cannot fail
908
else if ((newsv=(SAVEPOINT *) alloc_root(&session->transaction.mem_root,
909
savepoint_alloc_size)) == 0)
911
my_error(ER_OUT_OF_RESOURCES, MYF(0));
914
newsv->name=strmake_root(&session->transaction.mem_root,
915
lex->ident.str, lex->ident.length);
916
newsv->length=lex->ident.length;
918
if we'll get an error here, don't add new savepoint to the list.
919
we'll lose a little bit of memory in transaction mem_root, but it'll
920
be free'd when transaction ends anyway
922
if (ha_savepoint(session, newsv))
926
newsv->prev=session->transaction.savepoints;
927
session->transaction.savepoints=newsv;
934
891
* This occurs now because we have extracted some commands in