From f0cd9cb8676434037df3b337feb192177879e074 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Mon, 11 Jul 2022 21:09:55 -0500 Subject: [PATCH] Update CommandTag comment --- pgconn/pgconn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgconn/pgconn.go b/pgconn/pgconn.go index 37928ed7..e52051b3 100644 --- a/pgconn/pgconn.go +++ b/pgconn/pgconn.go @@ -628,7 +628,7 @@ func (pgConn *PgConn) ParameterStatus(key string) string { return pgConn.parameterStatuses[key] } -// CommandTag is the result of an Exec function +// CommandTag is the status text returned by PostgreSQL for a query. type CommandTag struct { s string }