Skip to content

Commit 81c12c7

Browse files
committed
Added note about #469
1 parent 31300e7 commit 81c12c7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/MySQL_Session.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@ void MySQL_Session::writeout() {
291291
}
292292

293293

294+
// FIXME: This function is currently disabled . See #469
294295
bool MySQL_Session::handler_CommitRollback(PtrSize_t *pkt) {
295296
if (
296297
( strncasecmp((char *)"commit",(char *)pkt->ptr+5,6)==0 )
@@ -327,6 +328,8 @@ bool MySQL_Session::handler_CommitRollback(PtrSize_t *pkt) {
327328
return false;
328329
}
329330

331+
332+
// FIXME: This function is currently disabled . See #469
330333
bool MySQL_Session::handler_SetAutocommit(PtrSize_t *pkt) {
331334
size_t sal=strlen("set autocommit");
332335
if ( pkt->size >= 7+sal) {

0 commit comments

Comments
 (0)