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.
9 lines
231 B
Plaintext
9 lines
231 B
Plaintext
drop database if exists maskingdb;
|
|
create database maskingdb;
|
|
use maskingdb;
|
|
create table masking_mxs1733 (email TEXT);
|
|
insert into masking_mxs1733 values ("john@example.com");
|
|
select * from masking_mxs1733;
|
|
email
|
|
****************
|