Fix masking_mysqltest for 2.3

Since UNIONs that would allow a column to be masked are
rejected, there is no need to check that masking is performed
since we will never get that far.
This commit is contained in:
Johan Wikman 2019-05-09 17:08:16 +03:00
parent c72dbb6f46
commit 3c5a932010
2 changed files with 0 additions and 4 deletions

View File

@ -6,6 +6,3 @@ insert into masking_mxs1733 values ("john@example.com");
select * from masking_mxs1733;
email
****************
select * from masking_mxs1733 UNION select * from masking_mxs1733;
email
****************

View File

@ -14,4 +14,3 @@ create table masking_mxs1733 (email TEXT);
insert into masking_mxs1733 values ("john@example.com");
select * from masking_mxs1733;
select * from masking_mxs1733 UNION select * from masking_mxs1733;