Ensure OPTION IMPORT statement has opposite effect

This commit is contained in:
Tobie Morgan Hitchcock 2022-04-01 11:33:16 +01:00
parent 4dea5c72ee
commit c6c43aea8a

View file

@ -160,9 +160,9 @@ impl Options {
auth: self.auth.clone(),
ns: self.ns.clone(),
db: self.db.clone(),
fields: v,
events: v,
tables: v,
fields: !v,
events: !v,
tables: !v,
..*self
}
}