Allow upper or lower case in OPTION statements
This commit is contained in:
parent
6a5faf852d
commit
da811b29bd
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ impl<'a> Executor<'a> {
|
|||
let res = match stm {
|
||||
// Specify runtime options
|
||||
Statement::Option(stm) => {
|
||||
match &stm.name.name[..] {
|
||||
match &stm.name.name.to_uppercase()[..] {
|
||||
"FIELD_QUERIES" => opt = opt.fields(stm.what),
|
||||
"EVENT_QUERIES" => opt = opt.events(stm.what),
|
||||
"TABLE_QUERIES" => opt = opt.tables(stm.what),
|
||||
|
|
Loading…
Reference in a new issue