From 98a4c0effc05997e2047d36252ee2fc219889222 Mon Sep 17 00:00:00 2001 From: Matt Curtis Date: Sun, 23 Jun 2024 22:18:29 +0100 Subject: [PATCH] fix linebreaks --- tools/edbconnect/main/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/edbconnect/main/main.go b/tools/edbconnect/main/main.go index e1aa084df9..42b2c265b8 100644 --- a/tools/edbconnect/main/main.go +++ b/tools/edbconnect/main/main.go @@ -103,6 +103,7 @@ func runQuery(db *sql.DB, query string) { for _, colName := range cols { fmt.Printf("%s\t", colName) } + fmt.Println() // Prepare a slice to hold the values values := make([]interface{}, len(cols)) @@ -134,6 +135,7 @@ func runQuery(db *sql.DB, query string) { fmt.Printf("%v\t", v) } } + fmt.Println() } if err = rows.Err(); err != nil {