Browse Source

fmt

pull/7185/head
chrislu 1 month ago
parent
commit
eb03d05c97
  1. 2
      weed/command/sql.go

2
weed/command/sql.go

@ -47,7 +47,7 @@ func splitSQLStatements(query string) []string {
continue
}
// Handle multi-line comments (/* comment */)
// Handle multi-line comments (/* comment */)
if char == '/' && i+1 < len(runes) && runes[i+1] == '*' {
// Skip the /* opening
i++

Loading…
Cancel
Save