[Groonga-mysql-commit] mroonga/mroonga at 8a09bc3 [master] mysql8: fix inverted condition

Back to archive index

Kouhei Sutou null+****@clear*****
Sun Jul 29 22:44:30 JST 2018


Kouhei Sutou	2018-07-29 22:44:30 +0900 (Sun, 29 Jul 2018)

  New Revision: 8a09bc3c3a60c47ee018a3cf654a2d54801f48f6
  https://github.com/mroonga/mroonga/commit/8a09bc3c3a60c47ee018a3cf654a2d54801f48f6

  Message:
    mysql8: fix inverted condition

  Modified files:
    ha_mroonga.cpp

  Modified: ha_mroonga.cpp (+1 -1)
===================================================================
--- ha_mroonga.cpp    2018-07-29 22:26:49 +0900 (355e7ad5)
+++ ha_mroonga.cpp    2018-07-29 22:44:30 +0900 (dc97c9bf)
@@ -7219,7 +7219,7 @@ int ha_mroonga::storage_update_row(const uchar *old_data,
       continue;
 
 #ifdef MRN_THD_VARIABLES_HAVE_BINLOG_ROW_IMAGE
-    if (thd->variables.binlog_row_image != BINLOG_ROW_IMAGE_FULL) {
+    if (thd->variables.binlog_row_image == BINLOG_ROW_IMAGE_FULL) {
       continue;
     }
 #endif
-------------- next part --------------
HTML����������������������������...
URL: https://lists.osdn.me/mailman/archives/groonga-mysql-commit/attachments/20180729/d382a4b7/attachment-0001.htm 



More information about the Groonga-mysql-commit mailing list
Back to archive index