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:
Markus Mäkelä 2018-05-17 09:34:01 +03:00
parent bcc3312d8e
commit 52e8c08a61
No known key found for this signature in database
GPG Key ID: 72D48FCE664F7B19

View File

@ -2,8 +2,9 @@
# Masking User
#
# See ../masking_rules.json
--disable_warnings
drop database if exists maskingdb;
--enable_warnings
create database maskingdb;
use maskingdb;