Skip to content

Commit f35b0d8

Browse files
committed
Merge branch 'merge/merge-xtradb-5.6' into 10.0
2 parents e4a0d75 + 7436c3d commit f35b0d8

File tree

2 files changed

+2
-30
lines changed

2 files changed

+2
-30
lines changed

storage/xtradb/handler/ha_innodb.cc

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -8213,12 +8213,6 @@ ha_innobase::write_row(
82138213
error = row_insert_for_mysql((byte*) record, prebuilt);
82148214
DEBUG_SYNC(user_thd, "ib_after_row_insert");
82158215

8216-
#ifdef EXTENDED_FOR_USERSTAT
8217-
if (UNIV_LIKELY(error == DB_SUCCESS && !trx->fake_changes)) {
8218-
rows_changed++;
8219-
}
8220-
#endif
8221-
82228216
/* Handle duplicate key errors */
82238217
if (auto_inc_used) {
82248218
ulonglong auto_inc;
@@ -8752,12 +8746,6 @@ ha_innobase::update_row(
87528746
}
87538747
}
87548748

8755-
#ifdef EXTENDED_FOR_USERSTAT
8756-
if (UNIV_LIKELY(error == DB_SUCCESS && !trx->fake_changes)) {
8757-
rows_changed++;
8758-
}
8759-
#endif
8760-
87618749
innobase_srv_conc_exit_innodb(trx);
87628750

87638751
func_exit:
@@ -8836,12 +8824,6 @@ ha_innobase::delete_row(
88368824

88378825
error = row_update_for_mysql((byte*) record, prebuilt);
88388826

8839-
#ifdef EXTENDED_FOR_USERSTAT
8840-
if (UNIV_LIKELY(error == DB_SUCCESS && !trx->fake_changes)) {
8841-
rows_changed++;
8842-
}
8843-
#endif
8844-
88458827
innobase_srv_conc_exit_innodb(trx);
88468828

88478829
/* Tell the InnoDB server that there might be work for
@@ -9197,11 +9179,6 @@ ha_innobase::index_read(
91979179
srv_stats.n_rows_read.add(
91989180
(size_t) prebuilt->trx->id, 1);
91999181
}
9200-
#ifdef EXTENDED_FOR_USERSTAT
9201-
rows_read++;
9202-
if (active_index < MAX_KEY)
9203-
index_rows_read[active_index]++;
9204-
#endif
92059182
break;
92069183
case DB_RECORD_NOT_FOUND:
92079184
error = HA_ERR_KEY_NOT_FOUND;
@@ -9498,11 +9475,6 @@ ha_innobase::general_fetch(
94989475
error = 0;
94999476
table->status = 0;
95009477
srv_stats.n_rows_read.add((size_t) prebuilt->trx->id, 1);
9501-
#ifdef EXTENDED_FOR_USERSTAT
9502-
rows_read++;
9503-
if (active_index < MAX_KEY)
9504-
index_rows_read[active_index]++;
9505-
#endif
95069478
break;
95079479
case DB_RECORD_NOT_FOUND:
95089480
error = HA_ERR_END_OF_FILE;

storage/xtradb/include/univ.i

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ Created 1/20/1994 Heikki Tuuri
4444

4545
#define INNODB_VERSION_MAJOR 5
4646
#define INNODB_VERSION_MINOR 6
47-
#define INNODB_VERSION_BUGFIX 32
47+
#define INNODB_VERSION_BUGFIX 34
4848

4949
#ifndef PERCONA_INNODB_VERSION
50-
#define PERCONA_INNODB_VERSION 79.0
50+
#define PERCONA_INNODB_VERSION 79.1
5151
#endif
5252

5353
/* Enable UNIV_LOG_ARCHIVE in XtraDB */

0 commit comments

Comments
 (0)