From eb03d05c9774e0f4cca8bb115c6f9d5936cf71ce Mon Sep 17 00:00:00 2001 From: chrislu Date: Wed, 3 Sep 2025 17:58:11 -0700 Subject: [PATCH] fmt --- weed/command/sql.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weed/command/sql.go b/weed/command/sql.go index 0931d8b50..48e15ee58 100644 --- a/weed/command/sql.go +++ b/weed/command/sql.go @@ -47,12 +47,12 @@ 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++ i++ - + // Skip to end of comment or end of input without including content for i < len(runes) { if runes[i] == '*' && i+1 < len(runes) && runes[i+1] == '/' {