Skip to content

Commit

Permalink
fix(sql): use string for unkwown types
Browse files Browse the repository at this point in the history
  • Loading branch information
yashmehrotra authored and moshloop committed Feb 11, 2025
1 parent 78a0e0f commit 6137f5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checks/sql.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func querySQL(driver string, connection string, query string) (SQLDetails, error
return result, fmt.Errorf("failed to parse json column: %s", *v)
}
default:
row[columns[i]] = val
row[columns[i]] = fmt.Sprint(val)
}
}

Expand Down

0 comments on commit 6137f5c

Please sign in to comment.