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
1055cf96
Commit
1055cf96
authored
Mar 20, 2021
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Plain Diff
Merge 10.5 into 10.6
parents
e8113f75
e7ddf466
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
126 additions
and
326 deletions
+126
-326
extra/mariabackup/xtrabackup.cc
extra/mariabackup/xtrabackup.cc
+10
-1
mysql-test/main/func_group.result
mysql-test/main/func_group.result
+35
-1
mysql-test/main/func_group.test
mysql-test/main/func_group.test
+31
-1
mysql-test/suite/engines/funcs/r/rpl_000015.result
mysql-test/suite/engines/funcs/r/rpl_000015.result
+24
-225
mysql-test/suite/engines/funcs/r/rpl_flushlog_loop.result
mysql-test/suite/engines/funcs/r/rpl_flushlog_loop.result
+1
-55
mysql-test/suite/engines/funcs/r/rpl_loaddata_m.result
mysql-test/suite/engines/funcs/r/rpl_loaddata_m.result
+1
-0
mysql-test/suite/engines/funcs/r/rpl_server_id1.result
mysql-test/suite/engines/funcs/r/rpl_server_id1.result
+5
-3
mysql-test/suite/engines/funcs/r/rpl_sp,myisam,mix.rdiff
mysql-test/suite/engines/funcs/r/rpl_sp,myisam,mix.rdiff
+2
-0
mysql-test/suite/engines/funcs/t/rpl_000015.test
mysql-test/suite/engines/funcs/t/rpl_000015.test
+9
-23
mysql-test/suite/engines/funcs/t/rpl_flushlog_loop.test
mysql-test/suite/engines/funcs/t/rpl_flushlog_loop.test
+2
-5
mysql-test/suite/engines/funcs/t/rpl_server_id1.test
mysql-test/suite/engines/funcs/t/rpl_server_id1.test
+2
-3
mysys/my_seek.c
mysys/my_seek.c
+1
-1
sql/opt_sum.cc
sql/opt_sum.cc
+3
-0
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+0
-3
storage/innobase/include/srv0srv.h
storage/innobase/include/srv0srv.h
+0
-4
storage/innobase/os/os0file.cc
storage/innobase/os/os0file.cc
+0
-1
No files found.
extra/mariabackup/xtrabackup.cc
View file @
1055cf96
...
...
@@ -58,13 +58,17 @@ Street, Fifth Floor, Boston, MA 02110-1335 USA
#ifdef __linux__
# include <sys/prctl.h>
#include <sys/resource.h>
#
include <sys/resource.h>
#endif
#ifdef __APPLE__
# include "libproc.h"
#endif
#ifdef __FreeBSD__
# include <sys/sysctl.h>
#endif
#include <btr0sea.h>
#include <dict0priv.h>
...
...
@@ -6687,6 +6691,11 @@ static int get_exepath(char *buf, size_t size, const char *argv0)
buf
[
ret
]
=
0
;
return
0
;
}
#elif defined(__FreeBSD__)
int
mib
[
4
]
=
{
CTL_KERN
,
KERN_PROC
,
KERN_PROC_PATHNAME
,
-
1
};
if
(
sysctl
(
mib
,
4
,
buf
,
&
size
,
NULL
,
0
)
==
0
)
{
return
0
;
}
#endif
return
my_realpath
(
buf
,
argv0
,
0
);
...
...
mysql-test/main/func_group.result
View file @
1055cf96
...
...
@@ -2460,7 +2460,38 @@ count(*)+sleep(0)
2
drop table t1;
#
# Start of 10.3 tests
# MDEV-25112: MIN/MAX optimization for query containing BETWEEN in WHERE
#
create table t1 (a int) engine=myisam;
insert into t1 values (267), (273), (287), (303), (308);
select max(a) from t1 where a < 303 and (a between 267 AND 287);
max(a)
287
explain select max(a) from t1 where a < 303 and (a between 267 AND 287);
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 5 Using where
select min(a) from t1 where a > 267 and (a between 273 AND 303);
min(a)
273
explain select min(a) from t1 where a > 267 and (a between 273 AND 303);
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 5 Using where
create index idx on t1(a);
select max(a) from t1 where a < 303 and (a between 267 AND 287);
max(a)
287
explain select max(a) from t1 where a < 303 and (a between 267 AND 287);
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Select tables optimized away
select min(a) from t1 where a > 267 and (a between 273 AND 303);
min(a)
273
explain select min(a) from t1 where a > 267 and (a between 273 AND 303);
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Select tables optimized away
drop table t1;
#
# End of 10.2 tests
#
#
# MDEV-9408 CREATE TABLE SELECT MAX(int_column) creates different columns for table vs view
...
...
@@ -2492,3 +2523,6 @@ t2 CREATE TABLE `t2` (
DROP TABLE t2;
DROP VIEW v1;
DROP TABLE t1;
#
# End of 10.3 tests
#
mysql-test/main/func_group.test
View file @
1055cf96
...
...
@@ -1705,7 +1705,33 @@ select count(*)+sleep(0) from t1;
drop
table
t1
;
--
echo
#
--
echo
# Start of 10.3 tests
--
echo
# MDEV-25112: MIN/MAX optimization for query containing BETWEEN in WHERE
--
echo
#
create
table
t1
(
a
int
)
engine
=
myisam
;
insert
into
t1
values
(
267
),
(
273
),
(
287
),
(
303
),
(
308
);
let
$q1
=
select
max
(
a
)
from
t1
where
a
<
303
and
(
a
between
267
AND
287
);
let
$q2
=
select
min
(
a
)
from
t1
where
a
>
267
and
(
a
between
273
AND
303
);
eval
$q1
;
eval
explain
$q1
;
eval
$q2
;
eval
explain
$q2
;
create
index
idx
on
t1
(
a
);
eval
$q1
;
eval
explain
$q1
;
eval
$q2
;
eval
explain
$q2
;
drop
table
t1
;
--
echo
#
--
echo
# End of 10.2 tests
--
echo
#
--
echo
#
...
...
@@ -1730,3 +1756,7 @@ DROP TABLE t2;
DROP
VIEW
v1
;
DROP
TABLE
t1
;
--
echo
#
--
echo
# End of 10.3 tests
--
echo
#
mysql-test/suite/engines/funcs/r/rpl_000015.result
View file @
1055cf96
...
...
@@ -7,241 +7,40 @@ master-bin.000001 329
connection slave;
include/stop_slave.inc
reset slave;
show slave status;
Slave_IO_State #
Master_Host 127.0.0.1
Master_User root
Master_Port MASTER_PORT
Connect_Retry #
Master_Log_File
Read_Master_Log_Pos 4
Relay_Log_File #
Relay_Log_Pos #
Relay_Master_Log_File
Slave_IO_Running No
Slave_SQL_Running No
Replicate_Do_DB
Replicate_Ignore_DB
Replicate_Do_Table
Replicate_Ignore_Table
Replicate_Wild_Do_Table
Replicate_Wild_Ignore_Table
Last_Errno 0
Last_Error
Skip_Counter 0
Exec_Master_Log_Pos 0
Relay_Log_Space #
Until_Condition None
Until_Log_File
Until_Log_Pos 0
Master_SSL_Allowed No
Master_SSL_CA_File
Master_SSL_CA_Path
Master_SSL_Cert
Master_SSL_Cipher
Master_SSL_Key
Seconds_Behind_Master #
Master_SSL_Verify_Server_Cert No
Last_IO_Errno 0
Last_IO_Error
Last_SQL_Errno 0
Last_SQL_Error
Replicate_Ignore_Server_Ids
Master_Server_Id 1
Master_SSL_Crl
Master_SSL_Crlpath
Using_Gtid No
Gtid_IO_Pos
Replicate_Do_Domain_Ids
Replicate_Ignore_Domain_Ids
Parallel_Mode optimistic
SQL_Delay 0
SQL_Remaining_Delay NULL
Slave_SQL_Running_State
Slave_DDL_Groups 0
Slave_Non_Transactional_Groups 0
Slave_Transactional_Groups 0
Slave_IO_Running = 'No'
Slave_SQL_Running = 'No'
Last_SQL_Errno = '0'
Last_SQL_Error = ''
Exec_Master_Log_Pos = '0'
change master to master_host='127.0.0.1';
show slave status;
Slave_IO_State #
Master_Host 127.0.0.1
Master_User root
Master_Port MASTER_PORT
Connect_Retry #
Master_Log_File
Read_Master_Log_Pos 4
Relay_Log_File #
Relay_Log_Pos #
Relay_Master_Log_File
Slave_IO_Running No
Slave_SQL_Running No
Replicate_Do_DB
Replicate_Ignore_DB
Replicate_Do_Table
Replicate_Ignore_Table
Replicate_Wild_Do_Table
Replicate_Wild_Ignore_Table
Last_Errno 0
Last_Error
Skip_Counter 0
Exec_Master_Log_Pos 0
Relay_Log_Space #
Until_Condition None
Until_Log_File
Until_Log_Pos 0
Master_SSL_Allowed No
Master_SSL_CA_File
Master_SSL_CA_Path
Master_SSL_Cert
Master_SSL_Cipher
Master_SSL_Key
Seconds_Behind_Master #
Master_SSL_Verify_Server_Cert No
Last_IO_Errno 0
Last_IO_Error
Last_SQL_Errno 0
Last_SQL_Error
Replicate_Ignore_Server_Ids
Master_Server_Id 1
Master_SSL_Crl
Master_SSL_Crlpath
Using_Gtid No
Gtid_IO_Pos
Replicate_Do_Domain_Ids
Replicate_Ignore_Domain_Ids
Parallel_Mode optimistic
SQL_Delay 0
SQL_Remaining_Delay NULL
Slave_SQL_Running_State
Slave_DDL_Groups 0
Slave_Non_Transactional_Groups 0
Slave_Transactional_Groups 0
change master to master_host='127.0.0.1',master_user='root',
Slave_IO_Running = 'No'
Slave_SQL_Running = 'No'
Last_SQL_Errno = '0'
Last_SQL_Error = ''
Exec_Master_Log_Pos = '0'
change master to master_host='127.0.0.1',master_user='root',
master_password='',master_port=MASTER_PORT;
show slave status;
Slave_IO_State #
Master_Host 127.0.0.1
Master_User root
Master_Port MASTER_PORT
Connect_Retry #
Master_Log_File
Read_Master_Log_Pos 4
Relay_Log_File #
Relay_Log_Pos #
Relay_Master_Log_File
Slave_IO_Running No
Slave_SQL_Running No
Replicate_Do_DB
Replicate_Ignore_DB
Replicate_Do_Table
Replicate_Ignore_Table
Replicate_Wild_Do_Table
Replicate_Wild_Ignore_Table
Last_Errno 0
Last_Error
Skip_Counter 0
Exec_Master_Log_Pos 0
Relay_Log_Space #
Until_Condition None
Until_Log_File
Until_Log_Pos 0
Master_SSL_Allowed No
Master_SSL_CA_File
Master_SSL_CA_Path
Master_SSL_Cert
Master_SSL_Cipher
Master_SSL_Key
Seconds_Behind_Master #
Master_SSL_Verify_Server_Cert No
Last_IO_Errno 0
Last_IO_Error
Last_SQL_Errno 0
Last_SQL_Error
Replicate_Ignore_Server_Ids
Master_Server_Id 1
Master_SSL_Crl
Master_SSL_Crlpath
Using_Gtid No
Gtid_IO_Pos
Replicate_Do_Domain_Ids
Replicate_Ignore_Domain_Ids
Parallel_Mode optimistic
SQL_Delay 0
SQL_Remaining_Delay NULL
Slave_SQL_Running_State
Slave_DDL_Groups 0
Slave_Non_Transactional_Groups 0
Slave_Transactional_Groups 0
include/start_slave.inc
show slave status;
Slave_IO_State Waiting for master to send event
Master_Host 127.0.0.1
Master_User root
Master_Port MASTER_PORT
Connect_Retry 1
Master_Log_File master-bin.000001
Read_Master_Log_Pos 329
Relay_Log_File slave-relay-bin.000002
Relay_Log_Pos 629
Relay_Master_Log_File master-bin.000001
Slave_IO_Running Yes
Slave_SQL_Running Yes
Replicate_Do_DB
Replicate_Ignore_DB
Replicate_Do_Table
Replicate_Ignore_Table
Replicate_Wild_Do_Table
Replicate_Wild_Ignore_Table
Last_Errno 0
Last_Error
Skip_Counter 0
Exec_Master_Log_Pos 329
Relay_Log_Space 938
Until_Condition None
Until_Log_File
Until_Log_Pos 0
Master_SSL_Allowed No
Master_SSL_CA_File
Master_SSL_CA_Path
Master_SSL_Cert
Master_SSL_Cipher
Master_SSL_Key
Seconds_Behind_Master #
Master_SSL_Verify_Server_Cert No
Last_IO_Errno 0
Last_IO_Error
Last_SQL_Errno 0
Last_SQL_Error
Replicate_Ignore_Server_Ids
Master_Server_Id 1
Master_SSL_Crl
Master_SSL_Crlpath
Using_Gtid No
Gtid_IO_Pos
Replicate_Do_Domain_Ids
Replicate_Ignore_Domain_Ids
Parallel_Mode optimistic
SQL_Delay 0
SQL_Remaining_Delay NULL
Slave_SQL_Running_State Slave has read all relay log; waiting for more updates
Slave_DDL_Groups 0
Slave_Non_Transactional_Groups 0
Slave_Transactional_Groups 0
Slave_IO_Running = 'Yes'
Slave_SQL_Running = 'Yes'
Last_SQL_Errno = '0'
Last_SQL_Error = ''
Exec_Master_Log_Pos = '329'
connection master;
drop table if exists t1;
create table t1 (n int, PRIMARY KEY(n));
insert into t1 values (10),(45),(90);
connection slave;
connection slave;
SELECT * FROM t1 ORDER BY n;
n 10
n 45
n 90
n
10
45
90
connection master;
SELECT * FROM t1 ORDER BY n;
n 10
n 45
n 90
n
10
45
90
drop table t1;
connection slave;
include/rpl_end.inc
mysql-test/suite/engines/funcs/r/rpl_flushlog_loop.result
View file @
1055cf96
...
...
@@ -10,59 +10,5 @@ change master to master_host='127.0.0.1',master_user='root',
master_password='',master_port=SLAVE_PORT;
include/start_slave.inc
flush logs;
SHOW SLAVE STATUS;
Slave_IO_State #
Master_Host 127.0.0.1
Master_User root
Master_Port SLAVE_PORT
Connect_Retry 60
Master_Log_File slave-bin.000001
Read_Master_Log_Pos 328
Relay_Log_File #
Relay_Log_Pos #
Relay_Master_Log_File slave-bin.000001
Slave_IO_Running Yes
Slave_SQL_Running Yes
Replicate_Do_DB
Replicate_Ignore_DB
Replicate_Do_Table
Replicate_Ignore_Table #
Replicate_Wild_Do_Table
Replicate_Wild_Ignore_Table
Last_Errno 0
Last_Error
Skip_Counter 0
Exec_Master_Log_Pos 328
Relay_Log_Space #
Until_Condition None
Until_Log_File
Until_Log_Pos 0
Master_SSL_Allowed No
Master_SSL_CA_File
Master_SSL_CA_Path
Master_SSL_Cert
Master_SSL_Cipher
Master_SSL_Key
Seconds_Behind_Master #
Master_SSL_Verify_Server_Cert No
Last_IO_Errno 0
Last_IO_Error
Last_SQL_Errno 0
Last_SQL_Error
Replicate_Ignore_Server_Ids
Master_Server_Id 2
Master_SSL_Crl
Master_SSL_Crlpath
Using_Gtid No
Gtid_IO_Pos
Replicate_Do_Domain_Ids
Replicate_Ignore_Domain_Ids
Parallel_Mode optimistic
SQL_Delay 0
SQL_Remaining_Delay NULL
Slave_SQL_Running_State Slave has read all relay log; waiting for more updates
Slave_DDL_Groups 0
Slave_Non_Transactional_Groups 0
Slave_Transactional_Groups 0
stop slave;
include/stop_slave.inc
include/rpl_end.inc
mysql-test/suite/engines/funcs/r/rpl_loaddata_m.result
View file @
1055cf96
...
...
@@ -23,6 +23,7 @@ mtr
mysql
mysqltest
performance_schema
sys
test
USE test;
SHOW TABLES;
...
...
mysql-test/suite/engines/funcs/r/rpl_server_id1.result
View file @
1055cf96
...
...
@@ -5,9 +5,11 @@ create table t1 (n int);
reset master;
include/stop_slave.inc
change master to master_port=SLAVE_PORT;
show slave status;
Slave_IO_State Master_Host Master_User Master_Port Connect_Retry Master_Log_File Read_Master_Log_Pos Relay_Log_File Relay_Log_Pos Relay_Master_Log_File Slave_IO_Running Slave_SQL_Running Replicate_Do_DB Replicate_Ignore_DB Replicate_Do_Table Replicate_Ignore_Table Replicate_Wild_Do_Table Replicate_Wild_Ignore_Table Last_Errno Last_Error Skip_Counter Exec_Master_Log_Pos Relay_Log_Space Until_Condition Until_Log_File Until_Log_Pos Master_SSL_Allowed Master_SSL_CA_File Master_SSL_CA_Path Master_SSL_Cert Master_SSL_Cipher Master_SSL_Key Seconds_Behind_Master Master_SSL_Verify_Server_Cert Last_IO_Errno Last_IO_Error Last_SQL_Errno Last_SQL_Error Replicate_Ignore_Server_Ids Master_Server_Id Master_SSL_Crl Master_SSL_Crlpath Using_Gtid Gtid_IO_Pos Replicate_Do_Domain_Ids Replicate_Ignore_Domain_Ids Parallel_Mode SQL_Delay SQL_Remaining_Delay Slave_SQL_Running_State Slave_DDL_Groups Slave_Non_Transactional_Groups Slave_Transactional_Groups
127.0.0.1 root SLAVE_PORT 1 4 slave-relay-bin.000001 4 No No # # 0 0 0 256 None 0 No NULL No 0 0 1 No conservative 0 NULL 0 0 0
Slave_IO_Running = 'No'
Slave_SQL_Running = 'No'
Last_SQL_Errno = '0'
Last_SQL_Error = ''
Exec_Master_Log_Pos = '0'
start slave;
insert into t1 values (1);
include/wait_for_slave_param.inc [Last_IO_Errno]
...
...
mysql-test/suite/engines/funcs/r/rpl_sp,myisam,mix.rdiff
View file @
1055cf96
--- /home/alice/git/10.3/mysql-test/suite/engines/funcs/r/rpl_sp,myisam,mix.result~ 2021-03-19 17:27:12.935559866 +0100
+++ /home/alice/git/10.3/mysql-test/suite/engines/funcs/r/rpl_sp,myisam,mix.reject 2021-03-19 17:27:14.071534938 +0100
@@ -126,12 +126,15 @@
show warnings;
Level Code Message
...
...
mysql-test/suite/engines/funcs/t/rpl_000015.test
View file @
1055cf96
...
...
@@ -11,39 +11,25 @@ save_master_pos;
connection
slave
;
--
source
include
/
stop_slave
.
inc
reset
slave
;
--
vertical_results
--
replace_result
$MASTER_MYPORT
MASTER_PORT
--
replace_column
1
# 5 # 8 # 9 # 23 # 33 #
show
slave
status
;
--
let
$status_items
=
Slave_IO_Running
,
Slave_SQL_Running
,
Last_SQL_Errno
,
Last_SQL_Error
,
Exec_Master_Log_Pos
--
source
include
/
show_slave_status
.
inc
change
master
to
master_host
=
'127.0.0.1'
;
# The following needs to be cleaned up when change master is fixed
--
vertical_results
--
replace_result
$MASTER_MYPORT
MASTER_PORT
--
replace_column
1
# 5 # 8 # 9 # 23 # 33 #
show
slave
status
;
--
source
include
/
show_slave_status
.
inc
--
replace_result
$MASTER_MYPORT
MASTER_PORT
eval
change
master
to
master_host
=
'127.0.0.1'
,
master_user
=
'root'
,
master_password
=
''
,
master_port
=
$MASTER_MYPORT
;
--
vertical_results
--
replace_result
$MASTER_MYPORT
MASTER_PORT
--
replace_column
1
# 5 # 8 # 9 # 23 # 33 #
show
slave
status
;
eval
change
master
to
master_host
=
'127.0.0.1'
,
master_user
=
'root'
,
master_password
=
''
,
master_port
=
$MASTER_MYPORT
;
--
source
include
/
start_slave
.
inc
sync_with_master
;
--
vertical_results
--
replace_result
$MASTER_MYPORT
MASTER_PORT
--
replace_column
1
# 5 # 8 # 9 # 23 # 33 #
--
replace_column
33
#
show
slave
status
;
--
source
include
/
show_slave_status
.
inc
connection
master
;
--
disable_warnings
drop
table
if
exists
t1
;
--
enable_warnings
create
table
t1
(
n
int
,
PRIMARY
KEY
(
n
));
insert
into
t1
values
(
10
),(
45
),(
90
);
--
sync_slave_with_master
connection
slave
;
SELECT
*
FROM
t1
ORDER
BY
n
;
connection
master
;
SELECT
*
FROM
t1
ORDER
BY
n
;
...
...
mysql-test/suite/engines/funcs/t/rpl_flushlog_loop.test
View file @
1055cf96
...
...
@@ -32,9 +32,6 @@ sleep 5;
#
# Show status of slave
#
--
replace_result
$SLAVE_MYPORT
SLAVE_PORT
--
replace_column
1
# 8 # 9 # 16 # 23 # 33 #
--
vertical_results
SHOW
SLAVE
STATUS
;
stop
slave
;
--
let
$status_items
=
Slave_IO_Running
,
Slave_SQL_Running
,
Last_SQL_Errno
,
Last_SQL_Error
,
Exec_Master_Log_Pos
--
source
include
/
stop_slave
.
inc
--
source
include
/
rpl_end
.
inc
mysql-test/suite/engines/funcs/t/rpl_server_id1.test
View file @
1055cf96
...
...
@@ -12,9 +12,8 @@ reset master;
--
source
include
/
stop_slave
.
inc
--
replace_result
$SLAVE_MYPORT
SLAVE_PORT
eval
change
master
to
master_port
=
$SLAVE_MYPORT
;
--
replace_result
$SLAVE_MYPORT
SLAVE_PORT
--
replace_column
16
# 18 #
show
slave
status
;
--
let
$status_items
=
Slave_IO_Running
,
Slave_SQL_Running
,
Last_SQL_Errno
,
Last_SQL_Error
,
Exec_Master_Log_Pos
--
source
include
/
show_slave_status
.
inc
start
slave
;
insert
into
t1
values
(
1
);
...
...
mysys/my_seek.c
View file @
1055cf96
...
...
@@ -86,7 +86,7 @@ my_off_t my_tell(File fd, myf MyFlags)
DBUG_ENTER
(
"my_tell"
);
DBUG_PRINT
(
"my"
,(
"fd: %d MyFlags: %lu"
,
fd
,
MyFlags
));
DBUG_ASSERT
(
fd
>=
0
);
#if defined (HAVE_TELL) && !defined (_WIN32)
#if defined (HAVE_TELL) && !defined (_WIN32)
&& !defined(_AIX)
pos
=
tell
(
fd
);
#else
pos
=
my_seek
(
fd
,
0L
,
MY_SEEK_CUR
,
0
);
...
...
sql/opt_sum.cc
View file @
1055cf96
...
...
@@ -842,7 +842,10 @@ static bool matching_cond(bool max_fl, TABLE_REF *ref, KEY *keyinfo,
if
(
is_field_part
)
{
if
(
between
||
eq_type
)
{
*
range_fl
&=
~
(
NO_MAX_RANGE
|
NO_MIN_RANGE
);
*
range_fl
&=
~
(
max_fl
?
NEAR_MAX
:
NEAR_MIN
);
}
else
{
*
range_fl
&=
~
(
max_fl
?
NO_MAX_RANGE
:
NO_MIN_RANGE
);
...
...
storage/innobase/handler/ha_innodb.cc
View file @
1055cf96
...
...
@@ -909,9 +909,6 @@ static SHOW_VAR innodb_status_variables[]= {
{
"adaptive_hash_non_hash_searches"
,
&
btr_cur_n_non_sea
,
SHOW_SIZE_T
},
#endif
{
"background_log_sync"
,
&
srv_log_writes_and_flush
,
SHOW_SIZE_T
},
#if defined(LINUX_NATIVE_AIO)
{
"buffered_aio_submitted"
,
&
srv_stats
.
buffered_aio_submitted
,
SHOW_SIZE_T
},
#endif
{
"buffer_pool_dump_status"
,
(
char
*
)
&
export_vars
.
innodb_buffer_pool_dump_status
,
SHOW_CHAR
},
{
"buffer_pool_load_status"
,
...
...
storage/innobase/include/srv0srv.h
View file @
1055cf96
...
...
@@ -105,10 +105,6 @@ struct srv_stats_t
space in the log buffer and have to flush it */
ulint_ctr_1_t
log_waits
;
#if defined(LINUX_NATIVE_AIO)
ulint_ctr_1_t
buffered_aio_submitted
;
#endif
/** Store the number of write requests issued */
ulint_ctr_1_t
buf_pool_write_requests
;
...
...
storage/innobase/os/os0file.cc
View file @
1055cf96
...
...
@@ -3952,7 +3952,6 @@ static bool is_linux_native_aio_supported()
}
int
err
=
io_submit
(
io_ctx
,
1
,
&
p_iocb
);
srv_stats
.
buffered_aio_submitted
.
inc
();
if
(
err
>=
1
)
{
/* Now collect the submitted IO request. */
...
...
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