Disable warnings when dropping databases
Dropping a database with DROP DATABASE ... IF NOT EXISTS will cause warnings to be logged if it doesn't exist. The masking_user test was missing the part that disables these warnings.
This commit is contained in:
parent
bcc3312d8e
commit
52e8c08a61
@ -2,8 +2,9 @@
|
||||
# Masking User
|
||||
#
|
||||
# See ../masking_rules.json
|
||||
|
||||
--disable_warnings
|
||||
drop database if exists maskingdb;
|
||||
--enable_warnings
|
||||
|
||||
create database maskingdb;
|
||||
use maskingdb;
|
||||
|
Loading…
x
Reference in New Issue
Block a user