fix: #4 select works as intended so long as it contains the word at the beginning "select"

This commit is contained in:
2026-07-26 21:56:27 +05:30
parent 8e2324b80c
commit a16d06df64
+1 -1
View File
@@ -165,7 +165,7 @@ func (statement *Statement) PrepareStatements(inputBuffer *InputBuffer) PrepareR
statement.stype = StatementInsert
return PrepareSuccess
}
if strings.HasPrefix(inputBuffer.Buffer, "select") {
if inputBuffer.Buffer == "select" {
statement.stype = StatementSelect
return PrepareSuccess
}