updated random value to double precision float

This commit is contained in:
Joe Lothan 2026-05-19 23:37:50 -04:00
parent 41c0eb5c49
commit 7f36e99443
3 changed files with 4 additions and 4 deletions

View file

@ -13,11 +13,11 @@ type HostRow struct {
HtmlTitle string
IframeAllowed bool
BestIconS3Key string
RandomOrder float32
RandomOrder float64
}
// fetchHostsPage gets a page of hosts with titles, ordered by random_order for shuffled bundles.
func fetchHostsPage(ctx context.Context, pool *pgxpool.Pool, lastRandom float32, limit int) ([]HostRow, error) {
func fetchHostsPage(ctx context.Context, pool *pgxpool.Pool, lastRandom float64, limit int) ([]HostRow, error) {
rows, err := pool.Query(ctx, `
SELECT id, hostname, protocol, html_title, COALESCE(iframe_allowed, true), COALESCE(best_icon_s3_key, ''), random_order
FROM hosts