Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
f35b0d8e
Commit
f35b0d8e
authored
Dec 04, 2016
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'merge/merge-xtradb-5.6' into 10.0
parents
e4a0d75a
7436c3d6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
30 deletions
+2
-30
storage/xtradb/handler/ha_innodb.cc
storage/xtradb/handler/ha_innodb.cc
+0
-28
storage/xtradb/include/univ.i
storage/xtradb/include/univ.i
+2
-2
No files found.
storage/xtradb/handler/ha_innodb.cc
View file @
f35b0d8e
...
...
@@ -8213,12 +8213,6 @@ ha_innobase::write_row(
error
=
row_insert_for_mysql
((
byte
*
)
record
,
prebuilt
);
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 */
if
(
auto_inc_used
)
{
ulonglong
auto_inc
;
...
...
@@ -8752,12 +8746,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
);
func_exit:
...
...
@@ -8836,12 +8824,6 @@ ha_innobase::delete_row(
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
);
/* Tell the InnoDB server that there might be work for
...
...
@@ -9197,11 +9179,6 @@ ha_innobase::index_read(
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
;
case
DB_RECORD_NOT_FOUND
:
error
=
HA_ERR_KEY_NOT_FOUND
;
...
...
@@ -9498,11 +9475,6 @@ ha_innobase::general_fetch(
error
=
0
;
table
->
status
=
0
;
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
;
case
DB_RECORD_NOT_FOUND
:
error
=
HA_ERR_END_OF_FILE
;
...
...
storage/xtradb/include/univ.i
View file @
f35b0d8e
...
...
@@ -44,10 +44,10 @@ Created 1/20/1994 Heikki Tuuri
#
define
INNODB_VERSION_MAJOR
5
#
define
INNODB_VERSION_MINOR
6
#
define
INNODB_VERSION_BUGFIX
3
2
#
define
INNODB_VERSION_BUGFIX
3
4
#
ifndef
PERCONA_INNODB_VERSION
#
define
PERCONA_INNODB_VERSION
79.
0
#
define
PERCONA_INNODB_VERSION
79.
1
#
endif
/* Enable UNIV_LOG_ARCHIVE in XtraDB */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment