From 81c12c7d8deb33209ea6cf9ee44ee6cd6970e3b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Sat, 16 Jan 2016 01:13:22 +0000 Subject: [PATCH] Added note about #469 --- lib/MySQL_Session.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/MySQL_Session.cpp b/lib/MySQL_Session.cpp index 4b111d4ca..874da4033 100644 --- a/lib/MySQL_Session.cpp +++ b/lib/MySQL_Session.cpp @@ -291,6 +291,7 @@ void MySQL_Session::writeout() { } +// FIXME: This function is currently disabled . See #469 bool MySQL_Session::handler_CommitRollback(PtrSize_t *pkt) { if ( ( strncasecmp((char *)"commit",(char *)pkt->ptr+5,6)==0 ) @@ -327,6 +328,8 @@ bool MySQL_Session::handler_CommitRollback(PtrSize_t *pkt) { return false; } + +// FIXME: This function is currently disabled . See #469 bool MySQL_Session::handler_SetAutocommit(PtrSize_t *pkt) { size_t sal=strlen("set autocommit"); if ( pkt->size >= 7+sal) {