Skip to content

Commit a2abe6f

Browse files
committed
fix(connection): Update Records method call to include 'false' parameter for improved data handling
1 parent 46d91e1 commit a2abe6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/dbio/connection/connection_discover.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ func (c *Connection) Test() (ok bool, err error) {
113113

114114
g.Debug(" got %d records from endpoint: %s", len(data.Rows), endpoint.Name)
115115

116-
records := data.Records()
116+
records := data.Records(false)
117117
if len(records) > 0 {
118118
record := records[0]
119119
g.Debug(" columns = %s", g.Marshal(lo.Keys(record)))

0 commit comments

Comments
 (0)