File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4545### Changed
4646
4747- Updated error constant generation to employ specific error types for making error matching easier. (thanks @mbezhanov )
48+ - Fix random value generation for pq.Float64Array factory (thanks @felipeparaujo )
4849
4950## [ v0.29.0] - 2024-11-20
5051
Original file line number Diff line number Diff line change @@ -338,7 +338,7 @@ func Types() drivers.Types {
338338 Imports : importers.List {`"github.com/lib/pq"` },
339339 RandomExpr : `arr := make(pq.Float64Array, f.IntBetween(1, 5))
340340 for i := range arr {
341- arr[i] = f.Float64()
341+ arr[i] = f.Float64(10, -1_000_000, 1_000_000 )
342342 }
343343 return arr` ,
344344 CompareExpr : `slices.Equal(AAA, BBB)` ,
You can’t perform that action at this time.
0 commit comments