Commit 7436c3d6 authored by Sergei Golubchik's avatar Sergei Golubchik

5.6.34-79.1

parent d7dc03a2
...@@ -7765,12 +7765,6 @@ ha_innobase::write_row( ...@@ -7765,12 +7765,6 @@ ha_innobase::write_row(
error = row_insert_for_mysql((byte*) record, prebuilt); error = row_insert_for_mysql((byte*) record, prebuilt);
DEBUG_SYNC(user_thd, "ib_after_row_insert"); DEBUG_SYNC(user_thd, "ib_after_row_insert");
#ifdef EXTENDED_FOR_USERSTAT
if (UNIV_LIKELY(error == DB_SUCCESS && !trx->fake_changes)) {
rows_changed++;
}
#endif
/* Handle duplicate key errors */ /* Handle duplicate key errors */
if (auto_inc_used) { if (auto_inc_used) {
ulonglong auto_inc; ulonglong auto_inc;
...@@ -8284,12 +8278,6 @@ ha_innobase::update_row( ...@@ -8284,12 +8278,6 @@ ha_innobase::update_row(
} }
} }
#ifdef EXTENDED_FOR_USERSTAT
if (UNIV_LIKELY(error == DB_SUCCESS && !trx->fake_changes)) {
rows_changed++;
}
#endif
innobase_srv_conc_exit_innodb(trx); innobase_srv_conc_exit_innodb(trx);
func_exit: func_exit:
...@@ -8362,12 +8350,6 @@ ha_innobase::delete_row( ...@@ -8362,12 +8350,6 @@ ha_innobase::delete_row(
error = row_update_for_mysql((byte*) record, prebuilt); error = row_update_for_mysql((byte*) record, prebuilt);
#ifdef EXTENDED_FOR_USERSTAT
if (UNIV_LIKELY(error == DB_SUCCESS && !trx->fake_changes)) {
rows_changed++;
}
#endif
innobase_srv_conc_exit_innodb(trx); innobase_srv_conc_exit_innodb(trx);
/* Tell the InnoDB server that there might be work for /* Tell the InnoDB server that there might be work for
...@@ -8717,11 +8699,6 @@ ha_innobase::index_read( ...@@ -8717,11 +8699,6 @@ ha_innobase::index_read(
error = 0; error = 0;
table->status = 0; table->status = 0;
srv_stats.n_rows_read.add((size_t) prebuilt->trx->id, 1); srv_stats.n_rows_read.add((size_t) prebuilt->trx->id, 1);
#ifdef EXTENDED_FOR_USERSTAT
rows_read++;
if (active_index < MAX_KEY)
index_rows_read[active_index]++;
#endif
break; break;
case DB_RECORD_NOT_FOUND: case DB_RECORD_NOT_FOUND:
error = HA_ERR_KEY_NOT_FOUND; error = HA_ERR_KEY_NOT_FOUND;
...@@ -8989,11 +8966,6 @@ ha_innobase::general_fetch( ...@@ -8989,11 +8966,6 @@ ha_innobase::general_fetch(
error = 0; error = 0;
table->status = 0; table->status = 0;
srv_stats.n_rows_read.add((size_t) prebuilt->trx->id, 1); srv_stats.n_rows_read.add((size_t) prebuilt->trx->id, 1);
#ifdef EXTENDED_FOR_USERSTAT
rows_read++;
if (active_index < MAX_KEY)
index_rows_read[active_index]++;
#endif
break; break;
case DB_RECORD_NOT_FOUND: case DB_RECORD_NOT_FOUND:
error = HA_ERR_END_OF_FILE; error = HA_ERR_END_OF_FILE;
......
...@@ -47,7 +47,7 @@ Created 1/20/1994 Heikki Tuuri ...@@ -47,7 +47,7 @@ Created 1/20/1994 Heikki Tuuri
#define INNODB_VERSION_BUGFIX MYSQL_VERSION_PATCH #define INNODB_VERSION_BUGFIX MYSQL_VERSION_PATCH
#ifndef PERCONA_INNODB_VERSION #ifndef PERCONA_INNODB_VERSION
#define PERCONA_INNODB_VERSION 79.0 #define PERCONA_INNODB_VERSION 79.1
#endif #endif
/* Enable UNIV_LOG_ARCHIVE in XtraDB */ /* Enable UNIV_LOG_ARCHIVE in XtraDB */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment