Skip to content

Commit 985e430

Browse files
committed
after-merge fixes
in innobase: compilation error on windows other changes: perfschema merge followup
1 parent 27f0bd7 commit 985e430

File tree

13 files changed

+22
-41
lines changed

13 files changed

+22
-41
lines changed

mysql-test/include/no_protocol.inc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# The file with expected results fits only to a run without
2+
# ps-protocol/sp-protocol/cursor-protocol/view-protocol.
3+
if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL
4+
+ $VIEW_PROTOCOL > 0`)
5+
{
6+
--skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
7+
}
8+

mysql-test/suite/funcs_1/t/processlist_priv_no_prot.test

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ let $fixed_bug_30395= 0;
2525

2626
# The file with expected results fits only to a run without
2727
# ps-protocol/sp-protocol/cursor-protocol/view-protocol.
28-
if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL
29-
+ $VIEW_PROTOCOL > 0`)
30-
{
31-
--skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
32-
}
28+
--source include/no_protocol.inc
3329

3430
--source suite/funcs_1/datadict/processlist_priv.inc

mysql-test/suite/funcs_1/t/processlist_val_no_prot.test

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@
2020

2121
# The file with expected results fits only to a run without
2222
# ps-protocol/sp-protocol/cursor-protocol/view-protocol.
23-
if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL
24-
+ $VIEW_PROTOCOL > 0`)
25-
{
26-
--skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
27-
}
23+
--source include/no_protocol.inc
2824

2925
--source suite/funcs_1/datadict/processlist_val.inc

mysql-test/suite/stress/t/ddl_archive.test

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,8 @@
1212
--source include/have_archive.inc
1313
let $engine_type= ARCHIVE;
1414

15+
--source include/no_protocol.inc
1516

16-
if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL + $VIEW_PROTOCOL > 0`)
17-
{
18-
--skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
19-
}
2017
let $run= `SELECT '$BIG_TEST' = '1'`;
2118
if ($run)
2219
{

mysql-test/suite/stress/t/ddl_csv.test

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,8 @@
1212
--source include/have_csv.inc
1313
let $engine_type= CSV;
1414

15+
--source include/no_protocol.inc
1516

16-
if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL + $VIEW_PROTOCOL > 0`)
17-
{
18-
--skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
19-
}
2017
let $run= `SELECT '$BIG_TEST' = '1'`;
2118
if ($run)
2219
{

mysql-test/suite/stress/t/ddl_innodb.test

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,8 @@
1212
--source include/have_innodb.inc
1313
let $engine_type= InnoDB;
1414

15+
--source include/no_protocol.inc
1516

16-
if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL + $VIEW_PROTOCOL > 0`)
17-
{
18-
--skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
19-
}
2017
let $run= `SELECT '$BIG_TEST' = '1'`;
2118
if ($run)
2219
{

mysql-test/suite/stress/t/ddl_memory.test

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,8 @@
1111
# Storage engine to be used in CREATE TABLE
1212
let $engine_type= MEMORY;
1313

14+
--source include/no_protocol.inc
1415

15-
if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL + $VIEW_PROTOCOL > 0`)
16-
{
17-
--skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
18-
}
1916
let $run= `SELECT '$BIG_TEST' = '1'`;
2017
if ($run)
2118
{

mysql-test/suite/stress/t/ddl_myisam.test

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,8 @@
1111
# Storage engine to be used in CREATE TABLE
1212
let $engine_type= MyISAM;
1313

14+
--source include/no_protocol.inc
1415

15-
if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL + $VIEW_PROTOCOL > 0`)
16-
{
17-
--skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
18-
}
1916
let $run= `SELECT '$BIG_TEST' = '1'`;
2017
if ($run)
2118
{

mysql-test/t/partition_innodb.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if (`select plugin_auth_version <= "5.6.24" from information_schema.plugins where plugin_name='innodb'`)
1+
if (`select plugin_auth_version < "5.6.25" from information_schema.plugins where plugin_name='innodb'`)
22
{
33
--skip Not fixed in InnoDB as of 5.6.24 or earlier
44
}

mysql-test/t/query_cache_ps_no_prot.test

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,7 @@ let collation=utf8_unicode_ci;
1616
--source include/have_collation.inc
1717

1818
# The file with expected results fits only to a run without
19-
# ps-protocol/sp-protocol/cursor-protocol/view-protocol.
20-
if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL
21-
+ $VIEW_PROTOCOL > 0`)
22-
{
23-
--skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
24-
}
19+
--source include/no_protocol.inc
2520

2621
# The main testing script
2722
--source include/query_cache_sql_prepare.inc

0 commit comments

Comments
 (0)