Skip to content

Commit 128ef72

Browse files
authored
lowercase config query (#422)
* lowercase config query * remove debug
1 parent 811885f commit 128ef72

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/config.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -707,6 +707,7 @@ impl Intercept {
707707
pub fn substitute(&mut self, db: &str, user: &str) {
708708
for (_, query) in self.queries.iter_mut() {
709709
query.substitute(db, user);
710+
query.query = query.query.to_ascii_lowercase();
710711
}
711712
}
712713
}

0 commit comments

Comments
 (0)