
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.
17 lines
292 B
Plaintext
17 lines
292 B
Plaintext
#
|
|
# MXS-1733
|
|
#
|
|
# See ../masking_rules.json
|
|
|
|
--disable_warnings
|
|
drop database if exists maskingdb;
|
|
--enable_warnings
|
|
|
|
create database maskingdb;
|
|
use maskingdb;
|
|
|
|
create table masking_mxs1733 (email TEXT);
|
|
insert into masking_mxs1733 values ("john@example.com");
|
|
|
|
select * from masking_mxs1733;
|