This commit is contained in:
Lunny Xiao 2023-07-12 13:09:49 +08:00
parent d6d5b9ee12
commit f4e29f7b97
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ func (statement *Statement) writeSelectColumns(w *builder.BytesWriter, columnStr
if err := statement.writeTop(w); err != nil {
return err
}
_, err := fmt.Fprint(w, columnStr)
_, err := fmt.Fprint(w, " ", columnStr)
return err
}