From ac9d4f4d96fd0a0e3be3223375fdc2b0b2550efb Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 24 Sep 2022 09:36:12 -0500 Subject: [PATCH] Encode text for Lseg includes [ and ] https://github.com/jackc/pgtype/issues/187 --- pgtype/lseg.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgtype/lseg.go b/pgtype/lseg.go index 97f130dc..05a86e1c 100644 --- a/pgtype/lseg.go +++ b/pgtype/lseg.go @@ -117,7 +117,7 @@ func (encodePlanLsegCodecText) Encode(value any, buf []byte) (newBuf []byte, err return nil, nil } - buf = append(buf, fmt.Sprintf(`(%s,%s),(%s,%s)`, + buf = append(buf, fmt.Sprintf(`[(%s,%s),(%s,%s)]`, strconv.FormatFloat(lseg.P[0].X, 'f', -1, 64), strconv.FormatFloat(lseg.P[0].Y, 'f', -1, 64), strconv.FormatFloat(lseg.P[1].X, 'f', -1, 64),