We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31300e7 commit 81c12c7Copy full SHA for 81c12c7
lib/MySQL_Session.cpp
@@ -291,6 +291,7 @@ void MySQL_Session::writeout() {
291
}
292
293
294
+// FIXME: This function is currently disabled . See #469
295
bool MySQL_Session::handler_CommitRollback(PtrSize_t *pkt) {
296
if (
297
( strncasecmp((char *)"commit",(char *)pkt->ptr+5,6)==0 )
@@ -327,6 +328,8 @@ bool MySQL_Session::handler_CommitRollback(PtrSize_t *pkt) {
327
328
return false;
329
330
331
+
332
333
bool MySQL_Session::handler_SetAutocommit(PtrSize_t *pkt) {
334
size_t sal=strlen("set autocommit");
335
if ( pkt->size >= 7+sal) {
0 commit comments