fix(CI/Codestyle): skip SQL keyword 'NOT' (#21591)
This commit is contained in:
parent
6f38d3c817
commit
cd8761796f
1 changed files with 1 additions and 1 deletions
|
|
@ -234,7 +234,7 @@ def backtick_check(file: io, file_path: str) -> None:
|
|||
# Skip SQL keywords
|
||||
if word.upper() in {"SELECT", "FROM", "JOIN", "WHERE", "GROUP", "BY", "ORDER",
|
||||
"DELETE", "UPDATE", "INSERT", "INTO", "SET", "VALUES", "AND",
|
||||
"IN", "OR", "REPLACE"}:
|
||||
"IN", "OR", "REPLACE", "NOT"}:
|
||||
continue
|
||||
|
||||
# Make sure the word is enclosed in backticks
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue