TaKO8Ki / gobang

A cross-platform TUI database management tool written in Rust
MIT License
2.82k stars 90 forks source link

Fix tiny bug in checking whether a SQL statement is a SELECT statement or not #132

Closed mi-wada closed 2 years ago

mi-wada commented 2 years ago

changelog: none

In checking whether a SQL statement is a SELECT statement or not, Only cases beginning with SELECT or select were considered to be SELECT statements, so we changed the check to be case-insensitive.