Skip to content
This repository was archived by the owner on Apr 9, 2021. It is now read-only.

Commit 724d174

Browse files
committed
Updated --expose_dd_tables procedure to deal with DD changes in 8.0.2
1 parent a3d6e43 commit 724d174

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

Changelog

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
3.2.13 24-Jul-2017
2+
- Updated --expose_dd_tables procedure to deal with DD changes in 8.0.2
13
3.2.12 18-Jul-2017
24
- Changed initial check for system tables: MySQL 8.0.2 has a tablespace instead
35
3.2.11 16-Jul-2017

bin/low_level_make_sandbox

+7-2
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,15 @@ if ($msb->{options}{expose_dd_tables})
180180
$msb->{options}{post_grants_sql} = '';
181181
}
182182

183+
# In MySQL 8.0.2 the "hidden" column was changed from integer (0=visible, 1=hidden)
184+
# to an ENUM (System, Visible, SE, DDL)
183185
$msb->{options}{post_grants_sql} =
184186
"set persist debug='+d,skip_dd_table_access_check';
185-
create table sys.dd_hidden_tables select id, name, schema_id from mysql.tables where hidden=1;
186-
update mysql.tables set hidden=0 where hidden=1;
187+
set \@col_type=(select c.type from mysql.columns c inner join mysql.tables t where t.id=table_id and t.name='tables' and c.name='hidden');
188+
set \@visible=(if(\@col_type = 'MYSQL_TYPE_ENUM', 'Visible', '0'));
189+
set \@hidden=(if(\@col_type = 'MYSQL_TYPE_ENUM', 'System', '1'));
190+
create table sys.dd_hidden_tables select id, name, schema_id from mysql.tables where hidden=\@hidden;
191+
update mysql.tables set hidden=\@visible where hidden=\@hidden and schema_id = 1;
187192
"
188193
. $msb->{options}{post_grants_sql};
189194
}

lib/MySQL/Sandbox.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ our @EXPORT_OK= qw( is_port_open
3030
split_version
3131
) ;
3232

33-
our $VERSION=q{3.2.12};
33+
our $VERSION=q{3.2.13};
3434
our $DEBUG;
3535

3636
BEGIN {

lib/MySQL/Sandbox/Recipes.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package MySQL::Sandbox::Recipes;
33
use strict;
44
use warnings;
55

6-
our $VERSION=q{3.2.12};
6+
our $VERSION=q{3.2.13};
77

88
1;
99
__END__

lib/MySQL/Sandbox/Scripts.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ our @EXPORT_OK = qw(
1717
);
1818
our @EXPORT = @EXPORT_OK;
1919

20-
our $VERSION=q{3.2.12};
20+
our $VERSION=q{3.2.13};
2121

2222
our @MANIFEST = (
2323
'clear.sh',

test_all_latest.sh

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ do
2525
if [ "$?" != "0" ] ; then continue ; fi
2626
make
2727
if [ "$?" != "0" ] ; then continue ; fi
28+
date
2829
TEST_VERSION=$V make test
2930
EC=$?
3031
echo "`date` - $V - $EC" >> results.txt

0 commit comments

Comments
 (0)